diff --git a/UI/src/robot-vue.js b/UI/src/robot-vue.js index efe5d76fd5..64a98a5a31 100644 --- a/UI/src/robot-vue.js +++ b/UI/src/robot-vue.js @@ -75,9 +75,11 @@ function contextRef(service, key) { typeof service.context[key] === typeof {} ) { const s = service; + // eslint-disable-next-line vue/no-ref-as-operand ref = reactive(service.context[key]); s.context[key] = ref; } else { + // eslint-disable-next-line vue/no-ref-as-operand ref = allocRef(service.context[key]); } const ctxRef = {