mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Fix node connection showing incorrect item count during … (#9684)
This commit is contained in:
parent
af3ac2db28
commit
99b54bb029
|
@ -658,12 +658,15 @@ export default defineComponent({
|
||||||
this.showTriggerNodeTooltip = false;
|
this.showTriggerNodeTooltip = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
nodeRunData(newValue) {
|
nodeRunData: {
|
||||||
if (!this.data) {
|
deep: true,
|
||||||
return;
|
handler(newValue) {
|
||||||
}
|
if (!this.data) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.$emit('run', { name: this.data.name, data: newValue, waiting: !!this.waiting });
|
this.$emit('run', { name: this.data.name, data: newValue, waiting: !!this.waiting });
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
Loading…
Reference in a new issue