mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix: Check if execution will wait on Test step click (no-changelog) (#11311)
This commit is contained in:
@@ -961,14 +961,7 @@ const projectPermissions = computed(() => {
|
||||
|
||||
const isStoppingExecution = ref(false);
|
||||
|
||||
const isWorkflowRunning = computed(() => {
|
||||
if (uiStore.isActionActive.workflowRunning) return true;
|
||||
if (workflowsStore.activeExecutionId) {
|
||||
const execution = workflowsStore.getWorkflowExecution;
|
||||
if (execution && execution.status === 'waiting' && !execution.finished) return true;
|
||||
}
|
||||
return false;
|
||||
});
|
||||
const isWorkflowRunning = computed(() => workflowsStore.isWorkflowRunning);
|
||||
const isExecutionWaitingForWebhook = computed(() => workflowsStore.executionWaitingForWebhook);
|
||||
|
||||
const isExecutionDisabled = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user