]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelper#progress_bar
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Oct 2019 12:54:22 +0000 (12:54 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Oct 2019 12:54:22 +0000 (12:54 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18870 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index b107fe6f4f98b609d73adcc1471581f6dab04adc..29178c44209bfbe2e13a073c9d7422013770ef85 100644 (file)
@@ -1439,8 +1439,10 @@ module ApplicationHelper
     titles = options[:titles].to_a
     titles[0] = "#{pcts[0]}%" if titles[0].blank?
     legend = options[:legend] || ''
-    content_tag('table',
-      content_tag('tr',
+    content_tag(
+      'table',
+      content_tag(
+        'tr',
         (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed', :title => titles[0]) : ''.html_safe) +
         (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done', :title => titles[1]) : ''.html_safe) +
         (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo', :title => titles[2]) : ''.html_safe)