mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
🐛 Fix issue that deleted value in expression did reappear after item select
This commit is contained in:
parent
7e60f68cc0
commit
e4bac15d05
|
@ -233,7 +233,7 @@ export default mixins(
|
||||||
this.update();
|
this.update();
|
||||||
} else {
|
} else {
|
||||||
// If no position got found add it to end
|
// If no position got found add it to end
|
||||||
let newValue = this.value;
|
let newValue = this.getValue();
|
||||||
if (newValue === '=' || newValue === '=0') {
|
if (newValue === '=' || newValue === '=0') {
|
||||||
newValue = `{{${eventData.variable}}}\n`;
|
newValue = `{{${eventData.variable}}}\n`;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue