Defect #20988 » defect-20988.diff
app/helpers/issues_helper.rb (working copy) | ||
---|---|---|
114 | 114 |
content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') + |
115 | 115 |
content_tag('td', h(child.status)) + |
116 | 116 |
content_tag('td', link_to_user(child.assigned_to)) + |
117 |
content_tag('td', progress_bar(child.done_ratio)), |
|
117 |
content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio)),
|
|
118 | 118 |
:class => css) |
119 | 119 |
end |
120 | 120 |
s << '</table></form>' |
- « Previous
- 1
- 2
- Next »