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 कारतोफ्फेलस्क्रिप्ट™
parent 4253b48b26
commit 2580286a19
3 changed files with 86 additions and 71 deletions

View File

@@ -1959,8 +1959,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;