diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb index a57241158..216d82cda 100644 --- a/app/views/versions/_overview.html.erb +++ b/app/views/versions/_overview.html.erb @@ -15,10 +15,10 @@ <% end %> -<% if version.fixed_issues.count > 0 %> +<% if version.issues_count > 0 %> <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>

- <%= link_to(l(:label_x_issues, :count => version.fixed_issues.count), + <%= link_to(l(:label_x_issues, :count => version.issues_count), project_issues_path(version.project, :status_id => '*', :fixed_version_id => version, :set_filter => 1)) %>   (<%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count),