fix(editor): Fix executions sorting (#11808)

This commit is contained in:
Raúl Gómez Morales
2024-11-20 15:33:16 +01:00
committed by GitHub
parent 187edf28aa
commit cd5ad65e90
8 changed files with 52 additions and 4 deletions

View File

@@ -369,6 +369,7 @@ export interface IExecutionBase {
retryOf?: string;
retrySuccessId?: string;
startedAt: Date;
createdAt: Date;
stoppedAt?: Date;
workflowId?: string; // To be able to filter executions easily //
}