mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Setting NDV session ID (#5144)
This commit is contained in:
parent
9dca984c0c
commit
c724de6be2
|
@ -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()),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue