1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

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
This commit is contained in:
Marius Balteanu 2024-11-07 16:32:38 +00:00
parent 0796c5d50e
commit 49e48ce390

View File

@ -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