Account for stages where the color isn't set

This commit is contained in:
Jason Zimdars
2025-04-24 17:46:56 -05:00
parent b44116f12f
commit ae90ddac07
+1 -1
View File
@@ -95,7 +95,7 @@
<ul class="list-style-none txt-xx-small ">
<% workflow.stages.each do |stage| %>
<li class="overflow-ellipsis flex align-center gap-half min-width">
<span class="workflow-preview__swatch btn btn--circle" style="--btn-background: <%= stage.color %>;"></span>
<span class="workflow-preview__swatch btn btn--circle" style="--btn-background: <%= stage.color.present? ? stage.color : Card::Colored::DEFAULT_COLOR %>;"></span>
<span class="overflow-ellipsis"><%= stage.name %></span>
</li>
<% end %>