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