Skip to content

Commit

Permalink
fix(editor): Prevent node-creator tabs from showing when toggled by C…
Browse files Browse the repository at this point in the history
…anvasAddButton (#4661)
  • Loading branch information
OlegIvaniv authored Nov 21, 2022
1 parent 2fb8ed8 commit 60746dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 60746dc

Please sign in to comment.