]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/AlignArguments in lib/redmine/field_format.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 9 Nov 2019 17:10:02 +0000 (17:10 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 9 Nov 2019 17:10:02 +0000 (17:10 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19038 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/field_format.rb

index e7c3ffc2b3edcc2a45d26b38ccc683f27c3cf57d..bc2def9629f1aba2838b2497db2d7ad501cf3c98 100644 (file)
@@ -305,8 +305,12 @@ module Redmine
         if custom_field.is_required?
           ''.html_safe
         else
-          view.content_tag('label',
-            view.check_box_tag(tag_name, '__none__', (value == '__none__'), :id => nil, :data => {:disables => "##{tag_id}"}) + l(:button_clear),
+          view.content_tag(
+            'label',
+            view.check_box_tag(
+              tag_name,
+              '__none__', (value == '__none__'), :id => nil,
+              :data => {:disables => "##{tag_id}"}) + l(:button_clear),
             :class => 'inline'
           )
         end