Commit e904d311 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

values < 10 should be rounded to one digit precision

parent 3fd6dbb4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ FnordMetric.util.formatOffset = function(offset, next_offset){

FnordMetric.util.formatValue = function(value){
  if(value < 10){
    return value.toFixed(2);
    return value.toFixed(1);
  }
  if(value < 100){
    return value.toFixed(1);