Skip to content

Commit 0d01ffc

Browse files
committed
fix source indent of VersionsHelper
git-svn-id: http://svn.redmine.org/redmine/trunk@20040 e93f8b46-1217-0410-a6f0-8f06a7374b81
1 parent a62f6cd commit 0d01ffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/helpers/versions_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def render_issue_status_by(version, criteria)
7373
end
7474
counts =
7575
sorted_keys.collect do |k|
76-
{:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}
76+
{:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}
7777
end
7878
max = counts.collect {|c| c[:total]}.max
7979
render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max}

0 commit comments

Comments
 (0)