mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -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();
|
||||
} 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 {
|
||||
|
|
Loading…
Reference in a new issue