diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-09-11 18:14:31 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 18:14:31 +1200 |
commit | 31a6fed66b4f077d2b6443fdd34229befe8777c3 (patch) | |
tree | 836071d303ee2c29a39ad6183c6c304947b26ef0 /web/app/controller/Root.js | |
parent | be4a97500430eb12760636e1a76bf1de2f67250f (diff) | |
parent | 9a459b1a25c955cc8aad97dff7dda88b1f0e0375 (diff) | |
download | trackermap-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.tar.gz trackermap-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.tar.bz2 trackermap-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.zip |
Merge pull request #582 from Abyss777/fix_missed_values
Fix reports with missed values
Diffstat (limited to 'web/app/controller/Root.js')
-rw-r--r-- | web/app/controller/Root.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 04bdb40d..acdd4018 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -52,7 +52,7 @@ Ext.define('Traccar.controller.Root', { if (value !== undefined) { return Traccar.AttributeFormatter.getAttributeConverter(this.attributeKey)(value); } - return null; + return value; }, onLaunch: function () { |