##// END OF EJS Templates
Fixed: Workflow summary shows X icon for workflow with exactly 1 status transition (#7611)....
Jean-Philippe Lang -
r4770:490ad9eeb800
parent child
Show More
@@ -24,7 +24,7
24 <td><%= h tracker %></td>
24 <td><%= h tracker %></td>
25 <% roles.each do |role, count| -%>
25 <% roles.each do |role, count| -%>
26 <td align="center">
26 <td align="center">
27 <%= link_to((count > 1 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %>
27 <%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %>
28 </td>
28 </td>
29 <% end -%>
29 <% end -%>
30 </tr>
30 </tr>
General Comments 0
You need to be logged in to leave comments. Login now