From 49e48ce390009389eb0206a35876f0a7aa62170b Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Thu, 7 Nov 2024 16:32:38 +0000 Subject: [PATCH] Switches checkmark icon in tables with SVG icon (#41710, #23980). Patch by Bernhard Rohloff (user:cappumuc). git-svn-id: https://svn.redmine.org/redmine/trunk@23221 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 989d88194..c52484726 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1661,7 +1661,7 @@ module ApplicationHelper def checked_image(checked=true) if checked - @checked_image_tag ||= content_tag(:span, nil, :class => 'icon-only icon-checked') + @checked_image_tag ||= content_tag(:span, sprite_icon("checked"), :class => 'icon-only icon-checked') end end