Skip to content

Commit

Permalink
fix: remove dash from legend items
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 committed Nov 2, 2023
1 parent 6474f38 commit a526582
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/elm/Pages/Build/Graph/View.elm
Original file line number Diff line number Diff line change
Expand Up @@ -142,39 +142,39 @@ view model msgs org repo buildNumber =
[ ul [ class "elm-build-graph-legend" ]
[ li []
[ buildVizLegendNode [ Svg.Attributes.class "-pending" ]
, text "- pending"
, text "pending"
]
, li [ class "-running-hover" ]
[ buildVizLegendNode [ Svg.Attributes.class "-running" ]
, text "- running"
, text "running"
]
, li []
[ buildVizLegendNode [ Svg.Attributes.class "-success" ]
, text "- success"
, text "success"
]
, li []
[ buildVizLegendNode [ Svg.Attributes.class "-failure" ]
, text "- failed"
, text "failed"
]
, li []
[ buildVizLegendNode [ Svg.Attributes.class "-canceled" ]
, text "- canceled"
, text "canceled"
]
, li []
[ buildVizLegendNode [ Svg.Attributes.class "-killed" ]
, text "- skipped"
, text "skipped"
]
, li []
[ buildVizLegendNode [ Svg.Attributes.class "-selected" ]
, text "- selected"
, text "selected"
]
, li []
[ buildVizLegendEdge [ Svg.Attributes.class "-pending" ]
, text "- pending"
, text "pending"
]
, li []
[ buildVizLegendEdge [ Svg.Attributes.class "-finished" ]
, text "- complete"
, text "complete"
]
]
, case model.repo.build.graph.graph of
Expand Down

0 comments on commit a526582

Please sign in to comment.