1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-22 16:31:12 +00:00

fix source indent of SettingsHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20055 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-21 13:03:14 +00:00
parent 8c53f2e5a8
commit b9f88d8aa0

View File

@ -80,11 +80,11 @@ module SettingsHelper
content_tag( content_tag(
'label', 'label',
check_box_tag( check_box_tag(
"settings[#{setting}][]", "settings[#{setting}][]",
value, value,
setting_values.include?(value), setting_values.include?(value),
:id => nil :id => nil
) + text.to_s, ) + text.to_s,
:class => (options[:inline] ? 'inline' : 'block') :class => (options[:inline] ? 'inline' : 'block')
) )
end.join.html_safe end.join.html_safe