diff --git a/packages/editor-ui/src/components/ExpressionInput.vue b/packages/editor-ui/src/components/ExpressionInput.vue index b5b7a2c84..0035262ea 100644 --- a/packages/editor-ui/src/components/ExpressionInput.vue +++ b/packages/editor-ui/src/components/ExpressionInput.vue @@ -233,7 +233,7 @@ export default mixins( this.update(); } else { // If no position got found add it to end - let newValue = this.value; + let newValue = this.getValue(); if (newValue === '=' || newValue === '=0') { newValue = `{{${eventData.variable}}}\n`; } else {