diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-06 13:56:59 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-06 13:56:59 +1300 |
commit | c5f53243c67faa2d1663ea357e24e37d2c4735d0 (patch) | |
tree | 08d4819f315018e81e84c7889efcc9cc3b7de2d3 /web/app/AttributeFormatter.js | |
parent | 69ac38e3b55c2f9884d95bae30796eb6664beb61 (diff) | |
download | trackermap-server-c5f53243c67faa2d1663ea357e24e37d2c4735d0.tar.gz trackermap-server-c5f53243c67faa2d1663ea357e24e37d2c4735d0.tar.bz2 trackermap-server-c5f53243c67faa2d1663ea357e24e37d2c4735d0.zip |
Remove demical zeroes from values
Diffstat (limited to 'web/app/AttributeFormatter.js')
-rw-r--r-- | web/app/AttributeFormatter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/AttributeFormatter.js b/web/app/AttributeFormatter.js index b7b2d01a6..44cc7d5a8 100644 --- a/web/app/AttributeFormatter.js +++ b/web/app/AttributeFormatter.js @@ -36,7 +36,7 @@ Ext.define('Traccar.AttributeFormatter', { defaultFormatter: function (value) { if (typeof value === 'number') { - return value.toFixed(2); + return Number(value.toFixed(2)); } else if (typeof value === 'boolean') { return value ? Ext.Msg.buttonText.yes : Ext.Msg.buttonText.no; } else if (value instanceof Date) { |