diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-30 15:17:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-30 15:17:11 +0000 |
commit | b5f8290f4ce05eaa77637ca7578bb04a806e312c (patch) | |
tree | 152027ecdc9a71ce59d52f25b5cd816e4eb56c4d | |
parent | f909a8c006d01e8b500ef8ffc9963bdf81662faf (diff) | |
download | redmine-b5f8290f4ce05eaa77637ca7578bb04a806e312c.tar.gz redmine-b5f8290f4ce05eaa77637ca7578bb04a806e312c.zip |
Fixed source indentation (#8106).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10772 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/versions/_issue_counts.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/versions/_issue_counts.html.erb b/app/views/versions/_issue_counts.html.erb index 50f174d08..002be4938 100644 --- a/app/views/versions/_issue_counts.html.erb +++ b/app/views/versions/_issue_counts.html.erb @@ -14,11 +14,11 @@ <% counts.each do |count| %> <tr> <td width="130px" align="right" > - <% if count[:group] -%> + <% if count[:group] -%> <%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> - <% else -%> + <% else -%> <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %> - <% end %> + <% end %> </td> <td width="240px"> <%= progress_bar((count[:closed].to_f / count[:total])*100, |