mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix: Check if execution will wait on Test step click (no-changelog) (#11311)
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user