diff options
-rw-r--r-- | interface/js/app/symbols.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/interface/js/app/symbols.js b/interface/js/app/symbols.js index aa1403101..a720a696d 100644 --- a/interface/js/app/symbols.js +++ b/interface/js/app/symbols.js @@ -197,7 +197,10 @@ define(["jquery", "app/common", "footable"], title: "Frequency", breakpoints: "md", sortValue: function (value) { return Number(value).toFixed(2); }}, - {name: "time", title: "Avg. time", breakpoints: "md"}, + {name: "time", + title: "Avg. time", + breakpoints: "md", + sortValue: function (value) { return parseFloat(value); }}, ], rows: items[0], paging: { |