]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of VersionsHelper
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Sep 2020 15:48:17 +0000 (15:48 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Sep 2020 15:48:17 +0000 (15:48 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20040 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/versions_helper.rb

index 6bdfae7692faaaa1a8e7fb02effb59077f0eb5be..219ced3d31a499fcfa64c8b13fecb72cf6acbe99 100644 (file)
@@ -73,7 +73,7 @@ module VersionsHelper
       end
     counts =
       sorted_keys.collect do |k|
-          {: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])}
       end
     max = counts.collect {|c| c[:total]}.max
     render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max}