mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -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;
|
||||
}
|
||||
},
|
||||
nodeRunData(newValue) {
|
||||
if (!this.data) {
|
||||
return;
|
||||
}
|
||||
nodeRunData: {
|
||||
deep: true,
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue