diff --git a/packages/editor-ui/src/views/NodeView.vue b/packages/editor-ui/src/views/NodeView.vue index 819d92af2c..14b12cd81c 100644 --- a/packages/editor-ui/src/views/NodeView.vue +++ b/packages/editor-ui/src/views/NodeView.vue @@ -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();