From e4bac15d05eb0bc36998fd7b8917270109a939c6 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 3 Jun 2021 16:53:01 -0500 Subject: [PATCH] :bug: Fix issue that deleted value in expression did reappear after item select --- packages/editor-ui/src/components/ExpressionInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/ExpressionInput.vue b/packages/editor-ui/src/components/ExpressionInput.vue index b5b7a2c84c..0035262eab 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 {