diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-08-14 16:31:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-14 16:31:24 +0300 |
commit | 15b5ac0768ee7236d1af025460a3bdd4f8fa6994 (patch) | |
tree | 778506714b81ffb4fece27a4e6fa2eb5bf17e824 /web | |
parent | d9777620508a7b197f0e5752869eef91d83e20a0 (diff) | |
parent | 6c8609aa3151246ab171995ef08c161e5d3b8242 (diff) | |
download | trackermap-server-15b5ac0768ee7236d1af025460a3bdd4f8fa6994.tar.gz trackermap-server-15b5ac0768ee7236d1af025460a3bdd4f8fa6994.tar.bz2 trackermap-server-15b5ac0768ee7236d1af025460a3bdd4f8fa6994.zip |
Merge pull request #2211 from Abyss777/distance
Changed way of summary distance calculation
Diffstat (limited to 'web')
-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 274b8d028..dcf50c580 100644 --- a/web/app/AttributeFormatter.js +++ b/web/app/AttributeFormatter.js @@ -61,7 +61,7 @@ Ext.define('Traccar.AttributeFormatter', { return this.speedFormatter; } else if (key === 'course') { return this.courseFormatter; - } else if (key === 'distance' || key === 'odometer') { + } else if (key === 'distance' || key === 'odometer' || key === 'totalDistance') { return this.distanceFormatter; } else if (key === 'hours') { return this.hoursFormatter; |