refactor(editor): Stop expecting null execution status (no-changelog) (#9672)

This commit is contained in:
Iván Ovejero
2024-06-10 10:19:40 +02:00
committed by GitHub
parent 67932c0b76
commit b0b4093072
7 changed files with 8 additions and 31 deletions

View File

@@ -185,7 +185,7 @@ export interface IExecutionsCurrentSummary {
startedAt: Date;
mode: WorkflowExecuteMode;
workflowId: string;
status?: ExecutionStatus;
status: ExecutionStatus;
}
export interface IExecutingWorkflowData {