From 6ae05c2c9ddbc75383bdd807cf0cd85461757bea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20B=C3=B6hm?= Date: Wed, 11 Sep 2024 13:52:43 +0200 Subject: [PATCH] Changed bool_icons --- app/helpers/application_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 1a5d5fc..b23ccae 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -13,8 +13,8 @@ module ApplicationHelper def bool_icon(bool) case bool - when true then "check" - else "x-mark" + when true then "check-circle" + else "x-circle" end end