Skip to content

Commit

Permalink
fix(editor): Setting NDV session ID (#5144)
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored Jan 12, 2023
1 parent 9dca984 commit c724de6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/editor-ui/src/components/NodeDetailsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ export default mixins(
};
},
mounted() {
this.ndvStore.setNDVSessionId;
dataPinningEventBus.$on(
'data-pinning-discovery',
({ isTooltipVisible }: { isTooltipVisible: boolean }) => {
Expand Down Expand Up @@ -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()),
});
Expand Down

0 comments on commit c724de6

Please sign in to comment.