From b05b4e70e9be53ef45cb4d4b744255e28112a4c3 Mon Sep 17 00:00:00 2001 From: davidvader Date: Wed, 1 Nov 2023 10:32:53 -0500 Subject: [PATCH] fix: canceled icon --- src/static/graph.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/static/graph.ts b/src/static/graph.ts index 19efb389d..1a47286ad 100644 --- a/src/static/graph.ts +++ b/src/static/graph.ts @@ -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')