Skip to content

Commit

Permalink
Use status or force status as complete (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
george-dorin authored Apr 3, 2024
1 parent b87b317 commit ee9e3a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/JobRun/JobRunView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const JobRunView = ({ run }: Props) => {
graph.forEach((node) => {
attrs[node.id] = {
...node.attributes,
status: attrs[node.id]?.status,
status: attrs[node.id]?.status || TaskRunStatus.COMPLETE,
}
})
}
Expand Down

0 comments on commit ee9e3a3

Please sign in to comment.