From 9ed8040ec068f7f43c2bc59a8aef1076fe3488c8 Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Thu, 3 Oct 2024 15:13:09 +0300 Subject: [PATCH] fix(editor): Hide run workflow button if only chat trigger available on new canvas (no-changelog) (#11041) --- packages/editor-ui/src/views/NodeView.v2.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/editor-ui/src/views/NodeView.v2.vue b/packages/editor-ui/src/views/NodeView.v2.vue index cafcdc6880..2aca346277 100644 --- a/packages/editor-ui/src/views/NodeView.v2.vue +++ b/packages/editor-ui/src/views/NodeView.v2.vue @@ -973,6 +973,7 @@ const isExecutionDisabled = computed(() => { return !containsTriggerNodes.value || allTriggerNodesDisabled.value; }); +const isRunWorkflowButtonVisible = computed(() => !isOnlyChatTriggerNodeActive.value); const isStopExecutionButtonVisible = computed( () => isWorkflowRunning.value && !isExecutionWaitingForWebhook.value, ); @@ -1598,6 +1599,7 @@ onBeforeUnmount(() => { >