Skip to content

Commit

Permalink
fix: use string.concat
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 committed Nov 2, 2023
1 parent 6f0ec2e commit f02269f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elm/Pages/Build/Graph/DOT.elm
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ nodeLabel model repo build node showSteps =
"<table "
++ escapeAttributes nodeLabelTableAttributes
++ ">"
++ String.join "" content
++ String.concat content
++ "</table>"

runtime =
Expand Down

0 comments on commit f02269f

Please sign in to comment.