##// END OF EJS Templates
Fixed that CSS class for done ratio is not properly generated (#15523)....
Jean-Philippe Lang -
r12098:e494983e1f74
parent child
Show More
@@ -1091,7 +1091,7 module ApplicationHelper
1091 (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) +
1091 (pcts[0] > 0 ? content_tag('td', '', :style => "width: #{pcts[0]}%;", :class => 'closed') : ''.html_safe) +
1092 (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) +
1092 (pcts[1] > 0 ? content_tag('td', '', :style => "width: #{pcts[1]}%;", :class => 'done') : ''.html_safe) +
1093 (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe)
1093 (pcts[2] > 0 ? content_tag('td', '', :style => "width: #{pcts[2]}%;", :class => 'todo') : ''.html_safe)
1094 ), :class => 'progress progress-#{pcts[0]}', :style => "width: #{width};").html_safe +
1094 ), :class => "progress progress-#{pcts[0]}", :style => "width: #{width};").html_safe +
1095 content_tag('p', legend, :class => 'percent').html_safe
1095 content_tag('p', legend, :class => 'percent').html_safe
1096 end
1096 end
1097
1097
General Comments 0
You need to be logged in to leave comments. Login now