mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
fix(editor): Setting NDV session ID (#5144)
This commit is contained in:
@@ -200,7 +200,6 @@ export default mixins(
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.ndvStore.setNDVSessionId;
|
|
||||||
dataPinningEventBus.$on(
|
dataPinningEventBus.$on(
|
||||||
'data-pinning-discovery',
|
'data-pinning-discovery',
|
||||||
({ isTooltipVisible }: { isTooltipVisible: boolean }) => {
|
({ isTooltipVisible }: { isTooltipVisible: boolean }) => {
|
||||||
@@ -410,9 +409,7 @@ export default mixins(
|
|||||||
this.avgOutputRowHeight = 0;
|
this.avgOutputRowHeight = 0;
|
||||||
this.avgInputRowHeight = 0;
|
this.avgInputRowHeight = 0;
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(this.ndvStore.setNDVSessionId, 0);
|
||||||
this.ndvStore.setNDVSessionId;
|
|
||||||
}, 0);
|
|
||||||
this.$externalHooks().run('dataDisplay.nodeTypeChanged', {
|
this.$externalHooks().run('dataDisplay.nodeTypeChanged', {
|
||||||
nodeSubtitle: this.getNodeSubtitle(node, this.activeNodeType, this.getCurrentWorkflow()),
|
nodeSubtitle: this.getNodeSubtitle(node, this.activeNodeType, this.getCurrentWorkflow()),
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user