mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix(editor): Setting NDV session ID (#5144)
This commit is contained in:
@@ -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()),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user