fix(editor): Show retry information in execution list only when it exists (#6587)

* fix(editor): Show retry information in execution list only when it exists

* build: Fix checking for test files
This commit is contained in:
Csaba Tuncsik
2023-07-04 09:42:58 +02:00
committed by GitHub
parent 54444fa388
commit 3ca66be380
4 changed files with 105 additions and 72 deletions

View File

@@ -1958,8 +1958,8 @@ export interface IExecutionsSummary {
id: string;
finished?: boolean;
mode: WorkflowExecuteMode;
retryOf?: string;
retrySuccessId?: string;
retryOf?: string | null;
retrySuccessId?: string | null;
waitTill?: Date;
startedAt: Date;
stoppedAt?: Date;