From 490ad9eeb80057e97da74b1a1031c42d2af0413c 2011-02-20 13:13:10 From: Jean-Philippe Lang Date: 2011-02-20 13:13:10 Subject: [PATCH] Fixed: Workflow summary shows X icon for workflow with exactly 1 status transition (#7611). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4890 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/workflows/index.rhtml b/app/views/workflows/index.rhtml index bed6a34..21287a2 100644 --- a/app/views/workflows/index.rhtml +++ b/app/views/workflows/index.rhtml @@ -24,7 +24,7 @@ <%= h tracker %> <% roles.each do |role, count| -%> - <%= link_to((count > 1 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %> + <%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %> <% end -%>