fix: Check if execution will wait on Test step click (no-changelog) (#11311)

This commit is contained in:
Michael Kret
2024-10-23 15:53:01 +03:00
committed by GitHub
parent 96219486dc
commit fd11f1e169
8 changed files with 138 additions and 31 deletions

View File

@@ -123,7 +123,7 @@ const defaultOutputMode = computed<OutputType>(() => {
});
const isNodeRunning = computed(() => {
return !!node.value && workflowsStore.isNodeExecuting(node.value.name);
return workflowRunning.value && !!node.value && workflowsStore.isNodeExecuting(node.value.name);
});
const workflowRunning = computed(() => {