diff --git a/app/views/goals/_status_callout.html.erb b/app/views/goals/_status_callout.html.erb index a2c609ad3..a8118fbc9 100644 --- a/app/views/goals/_status_callout.html.erb +++ b/app/views/goals/_status_callout.html.erb @@ -4,11 +4,11 @@ variant_classes = case goal.status when :behind - "bg-warning/10 border-warning/20 text-warning" + "bg-warning/10 border-warning/20" when :on_track - "bg-success/10 border-success/20 text-success" + "bg-success/10 border-success/20" else - "bg-surface-inset border-secondary text-secondary" + "bg-surface-inset border-secondary" end icon_glyph = case goal.status @@ -18,10 +18,16 @@ else "info" end + icon_color = case goal.status + when :behind then "warning" + when :on_track then "success" + else "default" + end + label = t("goals.status.#{goal.status}", default: goal.status.to_s.titleize) %> -