##// END OF EJS Templates
Format all floats with 2 decimals in the issue list (#13126)....
Jean-Philippe Lang -
r11120:cd04a041fe98
parent child
Show More
@@ -87,16 +87,14 module QueriesHelper
87 format_time(value)
87 format_time(value)
88 when 'Date'
88 when 'Date'
89 format_date(value)
89 format_date(value)
90 when 'Fixnum', 'Float'
90 when 'Fixnum'
91 if column.name == :done_ratio
91 if column.name == :done_ratio
92 progress_bar(value, :width => '80px')
92 progress_bar(value, :width => '80px')
93 elsif column.name == :spent_hours
94 sprintf "%.2f", value
95 elsif column.name == :hours
96 html_hours("%.2f" % value)
97 else
93 else
98 h(value.to_s)
94 value.to_s
99 end
95 end
96 when 'Float'
97 sprintf "%.2f", value
100 when 'User'
98 when 'User'
101 link_to_user value
99 link_to_user value
102 when 'Project'
100 when 'Project'
General Comments 0
You need to be logged in to leave comments. Login now