We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62f6cd commit 0d01ffcCopy full SHA for 0d01ffc
app/helpers/versions_helper.rb
@@ -73,7 +73,7 @@ def render_issue_status_by(version, criteria)
73
end
74
counts =
75
sorted_keys.collect do |k|
76
- {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}
+ {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}
77
78
max = counts.collect {|c| c[:total]}.max
79
render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max}
0 commit comments