From 3fe61c6b65663ea7976987d797e25ad9ce7ab9e6 Mon Sep 17 00:00:00 2001 From: James Smith Date: Tue, 30 Jan 2024 16:11:18 +0000 Subject: [PATCH] change icon for new models to stars --- app/helpers/models_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/models_helper.rb b/app/helpers/models_helper.rb index 69a32c196..b955a2706 100644 --- a/app/helpers/models_helper.rb +++ b/app/helpers/models_helper.rb @@ -10,7 +10,7 @@ def group(files) def status_badges(model) badges = [] - badges << content_tag(:span, icon("bi bi-inbox-fill", t("general.new")), class: "text-success align-middle") if model.new? + badges << content_tag(:span, icon("bi bi-stars", t("general.new")), class: "text-warning align-middle") if model.new? badges << problem_icon(model.problems_including_files) content_tag :span, safe_join(badges, " "), class: "status-badges" end