mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
fix: Check if execution will wait on Test step click (no-changelog) (#11311)
This commit is contained in:
@@ -426,12 +426,7 @@ export default defineComponent({
|
||||
return this.workflowsStore.getWorkflowExecution;
|
||||
},
|
||||
workflowRunning(): boolean {
|
||||
if (this.uiStore.isActionActive.workflowRunning) return true;
|
||||
if (this.workflowsStore.activeExecutionId) {
|
||||
const execution = this.workflowsStore.getWorkflowExecution;
|
||||
if (execution && execution.status === 'waiting' && !execution.finished) return true;
|
||||
}
|
||||
return false;
|
||||
return this.workflowsStore.isWorkflowRunning;
|
||||
},
|
||||
currentWorkflow(): string {
|
||||
return this.$route.params.name?.toString() || this.workflowsStore.workflowId;
|
||||
|
||||
Reference in New Issue
Block a user