We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3203c7 commit 81f2093Copy full SHA for 81f2093
client/src/shared/components/workflow-executions/WorkflowExecutionsHeader.tsx
@@ -5,7 +5,7 @@ const WorkflowExecutionsHeader = ({job, triggerExecution}: {job: Job; triggerExe
5
const startTime = job?.startDate?.getTime();
6
const endTime = job?.endDate?.getTime();
7
8
- const taskExecutionsCompleted = job?.taskExecutions?.every((taskExecution) => taskExecution.status === 'COMPLETED');
+ const taskExecutionsCompleted = job?.status === 'COMPLETED';
9
const triggerExecutionCompleted = !triggerExecution || triggerExecution?.status === 'COMPLETED';
10
11
let duration = 0;
0 commit comments