Skip to content

Commit

Permalink
Fix job run task list incorect symbol (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
george-dorin committed Feb 22, 2024
1 parent 3f8a02f commit a2b54a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/late-pugs-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smartcontractkit/operator-ui': patch
---

Fix a bug that would show all tasks in task list as completed
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: TaskRunStatus.COMPLETE,
status: attrs[node.id].status,
}
})
}
Expand Down

0 comments on commit a2b54a2

Please sign in to comment.