Skip to content

Commit

Permalink
fix: canceled icon
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 committed Nov 1, 2023
1 parent 40cd4b6 commit b05b4e7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/static/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,10 @@ function drawNodes(opts, buildGraphElement, nodeSelector, edges) {
stepIcon.append('path').attr('d', 'M8 8l12 12M20 8L8 20');
}

if (step.status === 'canceled') {
stepIcon.append('path').attr('d', 'M8 8l12 12M20 8L8 20');
}

if (step.status === 'killed') {
stepIcon
.append('circle')
Expand Down

0 comments on commit b05b4e7

Please sign in to comment.