aboutsummaryrefslogtreecommitdiff
path: root/web/app/AttributeFormatter.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-07-28 16:32:34 +1200
committerGitHub <noreply@github.com>2017-07-28 16:32:33 +1200
commita2e350b15065bf9922631944daa95790b7a869a8 (patch)
tree604d904829d2069d6d0ba900d23d08a54123a8c5 /web/app/AttributeFormatter.js
parent352159c53b862a78cead3c1447d14eca28bd9c58 (diff)
parentd15a49e82481381a571c0c2285edd2fc77ccb5ca (diff)
downloadetbsa-traccar-web-a2e350b15065bf9922631944daa95790b7a869a8.tar.gz
etbsa-traccar-web-a2e350b15065bf9922631944daa95790b7a869a8.tar.bz2
etbsa-traccar-web-a2e350b15065bf9922631944daa95790b7a869a8.zip
Merge pull request #537 from Abyss777/hide_geofences
Do not show geofenceId if it is unknown
Diffstat (limited to 'web/app/AttributeFormatter.js')
-rw-r--r--web/app/AttributeFormatter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/AttributeFormatter.js b/web/app/AttributeFormatter.js
index 47a924a..2d394f5 100644
--- a/web/app/AttributeFormatter.js
+++ b/web/app/AttributeFormatter.js
@@ -82,7 +82,7 @@ Ext.define('Traccar.AttributeFormatter', {
store = Ext.getStore('Geofences');
}
geofence = store.getById(value);
- return geofence ? geofence.get('name') : value;
+ return geofence ? geofence.get('name') : '';
}
},