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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -658,7 +658,9 @@ export default defineComponent({
this.showTriggerNodeTooltip = false;
}
},
nodeRunData(newValue) {
nodeRunData: {
deep: true,
handler(newValue) {
if (!this.data) {
return;
}
@ -666,6 +668,7 @@ export default defineComponent({
this.$emit('run', { name: this.data.name, data: newValue, waiting: !!this.waiting });
},
},
},
created() {
const hasSeenPinDataTooltip = useStorage(LOCAL_STORAGE_PIN_DATA_DISCOVERY_CANVAS_FLAG).value;
if (!hasSeenPinDataTooltip) {