Changed bool_icons

This commit is contained in:
2024-09-11 13:52:43 +02:00
parent 0f43113e88
commit 6ae05c2c9d

View File

@@ -13,8 +13,8 @@ module ApplicationHelper
def bool_icon(bool) def bool_icon(bool)
case bool case bool
when true then "check" when true then "check-circle"
else "x-mark" else "x-circle"
end end
end end