]> source.dussan.org Git - redmine.git/commitdiff
Format all floats with 2 decimals in the issue list (#13126).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 11 Feb 2013 18:07:45 +0000 (18:07 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 11 Feb 2013 18:07:45 +0000 (18:07 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11350 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/queries_helper.rb

index bbf378c158653c3dcd72834fb7aecf68e66a284c..9c403ab8fa11f5e793ff0e229274f915402cc499 100644 (file)
@@ -87,16 +87,14 @@ module QueriesHelper
       format_time(value)
     when 'Date'
       format_date(value)
-    when 'Fixnum', 'Float'
+    when 'Fixnum'
       if column.name == :done_ratio
         progress_bar(value, :width => '80px')
-      elsif  column.name == :spent_hours
-        sprintf "%.2f", value
-      elsif column.name == :hours
-        html_hours("%.2f" % value)
       else
-        h(value.to_s)
+        value.to_s
       end
+    when 'Float'
+      sprintf "%.2f", value
     when 'User'
       link_to_user value
     when 'Project'