fix(editor): Fix node connection showing incorrect item count during … (#9684)

This commit is contained in:
Tomi Turtiainen
2024-06-10 16:54:13 +03:00
committed by GitHub
parent af3ac2db28
commit 99b54bb029

View File

@@ -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() {