diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-05-19 16:56:08 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-19 16:56:08 +1200 |
commit | f5d4d3bf8a4d12f4739407f8f25bba3c572df649 (patch) | |
tree | 71c3807a69c69b9e8659d873ee4400cd835b699c /web/app/view/edit/Attributes.js | |
parent | 31187bc2a3ae41ab553a6472b7592895e3641fe8 (diff) | |
parent | 8caf621e9adbeb99093076335679813a8a6e8ffe (diff) | |
download | trackermap-web-f5d4d3bf8a4d12f4739407f8f25bba3c572df649.tar.gz trackermap-web-f5d4d3bf8a4d12f4739407f8f25bba3c572df649.tar.bz2 trackermap-web-f5d4d3bf8a4d12f4739407f8f25bba3c572df649.zip |
Merge pull request #490 from Abyss777/position_attributes
Implement known position attributes
Diffstat (limited to 'web/app/view/edit/Attributes.js')
-rw-r--r-- | web/app/view/edit/Attributes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/edit/Attributes.js b/web/app/view/edit/Attributes.js index 7788d8c8..b080e569 100644 --- a/web/app/view/edit/Attributes.js +++ b/web/app/view/edit/Attributes.js @@ -57,9 +57,9 @@ Ext.define('Traccar.view.edit.Attributes', { if (this.attributesStore) { attribute = Ext.getStore(this.attributesStore).getById(record.get('name')); } - if (attribute && attribute.get('convert') === 'speed') { + if (attribute && attribute.get('dataType') === 'speed') { return Ext.getStore('SpeedUnits').formatValue(value, Traccar.app.getPreference('speedUnit', 'kn')); - } else if (attribute && attribute.get('convert') === 'distance') { + } else if (attribute && attribute.get('dataType') === 'distance') { return Ext.getStore('DistanceUnits').formatValue(value, Traccar.app.getPreference('distanceUnit', 'km')); } else { return value; |