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

@@ -381,6 +381,7 @@ export interface IExecutionBase {
id?: string;
finished: boolean;
mode: WorkflowExecuteMode;
status: ExecutionStatus;
retryOf?: string;
retrySuccessId?: string;
startedAt: Date;
@@ -404,7 +405,6 @@ export interface IExecutionPushResponse {
export interface IExecutionResponse extends IExecutionBase {
id: string;
status: string;
data?: IRunExecutionData;
workflowData: IWorkflowDb;
executedNode?: string;