mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
🐛 Fix issue with selecting variables in Expression Editor
This commit is contained in:
@@ -73,9 +73,15 @@ export default mixins(
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
valueChanged (value: string) {
|
||||
valueChanged (value: string, forceUpdate = false) {
|
||||
this.latestValue = value;
|
||||
this.callDebounced('updateDisplayValue', 500);
|
||||
|
||||
if (forceUpdate === true) {
|
||||
this.updateDisplayValue();
|
||||
this.$emit('valueChanged', this.latestValue);
|
||||
} else {
|
||||
this.callDebounced('updateDisplayValue', 500);
|
||||
}
|
||||
},
|
||||
|
||||
updateDisplayValue () {
|
||||
|
||||
Reference in New Issue
Block a user