🐛 Fix issue that deleted value in expression did reappear after item select

This commit is contained in:
Jan Oberhauser 2021-06-03 16:53:01 -05:00
parent 7e60f68cc0
commit e4bac15d05

View file

@ -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 {