]> source.dussan.org Git - redmine.git/commitdiff
Fixed that CSS class for done ratio is not properly generated (#15523).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 29 Nov 2013 21:23:21 +0000 (21:23 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 29 Nov 2013 21:23:21 +0000 (21:23 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@12349 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index bb9121031942d86a29f80bd7be3fbf0b91220d09..357a7e04c78a208cf92dc143dc5f9cbfd86c64f6 100644 (file)
@@ -1091,7 +1091,7 @@ module ApplicationHelper
         (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) +
         (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) +
         (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe)
-      ), :class => 'progress progress-#{pcts[0]}', :style => "width: #{width};").html_safe +
+      ), :class => "progress progress-#{pcts[0]}", :style => "width: #{width};").html_safe +
       content_tag('p', legend, :class => 'percent').html_safe
   end