mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-24 11:02:12 -08:00
fix(editor): Prevent node-creator tabs from showing when toggled by CanvasAddButton (#4661)
This commit is contained in:
parent
2fb8ed825b
commit
60746dc92e
|
@ -677,7 +677,9 @@ export default mixins(
|
|||
this.nodeCreatorStore.selectedType = TRIGGER_NODE_FILTER;
|
||||
this.nodeCreatorStore.showScrim = true;
|
||||
this.onToggleNodeCreator({ source, createNodeActive: true });
|
||||
this.nodeCreatorStore.showTabs = false;
|
||||
this.$nextTick(() => {
|
||||
this.nodeCreatorStore.showTabs = false;
|
||||
});
|
||||
},
|
||||
async openExecution(executionId: string) {
|
||||
this.startLoading();
|
||||
|
|
Loading…
Reference in a new issue