summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-11-07 16:32:38 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-11-07 16:32:38 +0000
commit49e48ce390009389eb0206a35876f0a7aa62170b (patch)
tree371356cc7f1377866074c93fdd7d7b07787166ed
parent0796c5d50e2e6eecb5cd370301b98a1391727478 (diff)
downloadredmine-49e48ce390009389eb0206a35876f0a7aa62170b.tar.gz
redmine-49e48ce390009389eb0206a35876f0a7aa62170b.zip
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
-rw-r--r--app/helpers/application_helper.rb2
1 files changed, 1 insertions, 1 deletions
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