From fc27bd69302b25c2bc89e23a740cdea84ddcd2de Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Thu, 5 Mar 2026 18:15:28 +0100 Subject: [PATCH] UX: stops randomising support category icon (#38287) We would try to have diversity through different icons and fitzpatrick scale, but we need the icon to be easily recognisable. For now we are going with "person_raising_hand". --- .../categories/types/support.rb | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/plugins/discourse-solved/app/services/discourse_solved/categories/types/support.rb b/plugins/discourse-solved/app/services/discourse_solved/categories/types/support.rb index 37acf5e1f62..b20f6415a04 100644 --- a/plugins/discourse-solved/app/services/discourse_solved/categories/types/support.rb +++ b/plugins/discourse-solved/app/services/discourse_solved/categories/types/support.rb @@ -74,26 +74,8 @@ module DiscourseSolved } end - ICON_VARIANTS = %w[ - person_raising_hand:t2 - person_raising_hand:t3 - person_raising_hand:t4 - person_raising_hand:t5 - person_raising_hand:t6 - man_raising_hand:t2 - man_raising_hand:t3 - man_raising_hand:t4 - man_raising_hand:t5 - man_raising_hand:t6 - woman_raising_hand:t2 - woman_raising_hand:t3 - woman_raising_hand:t4 - woman_raising_hand:t5 - woman_raising_hand:t6 - ].freeze - def icon - ICON_VARIANTS.sample + "person_raising_hand" end end end