fix(editor): Setting NDV session ID (#5144)

This commit is contained in:
Csaba Tuncsik 2023-01-12 15:23:58 +01:00 committed by GitHub
parent 9dca984c0c
commit c724de6be2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,7 +200,6 @@ export default mixins(
};
},
mounted() {
this.ndvStore.setNDVSessionId;
dataPinningEventBus.$on(
'data-pinning-discovery',
({ isTooltipVisible }: { isTooltipVisible: boolean }) => {
@ -410,9 +409,7 @@ export default mixins(
this.avgOutputRowHeight = 0;
this.avgInputRowHeight = 0;
setTimeout(() => {
this.ndvStore.setNDVSessionId;
}, 0);
setTimeout(this.ndvStore.setNDVSessionId, 0);
this.$externalHooks().run('dataDisplay.nodeTypeChanged', {
nodeSubtitle: this.getNodeSubtitle(node, this.activeNodeType, this.getCurrentWorkflow()),
});