aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-09-11 18:14:31 +1200
committerGitHub <noreply@github.com>2017-09-11 18:14:31 +1200
commit31a6fed66b4f077d2b6443fdd34229befe8777c3 (patch)
tree836071d303ee2c29a39ad6183c6c304947b26ef0 /web
parentbe4a97500430eb12760636e1a76bf1de2f67250f (diff)
parent9a459b1a25c955cc8aad97dff7dda88b1f0e0375 (diff)
downloadetbsa-traccar-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.tar.gz
etbsa-traccar-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.tar.bz2
etbsa-traccar-web-31a6fed66b4f077d2b6443fdd34229befe8777c3.zip
Merge pull request #582 from Abyss777/fix_missed_values
Fix reports with missed values
Diffstat (limited to 'web')
-rw-r--r--web/app/controller/Root.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js
index 04bdb40..acdd401 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 () {