diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-07-18 00:27:42 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 00:27:42 +1200 |
commit | af256a07e31d65013c294962ad42443d6e50c5f5 (patch) | |
tree | f09b8736c685632387767aff8d8d6e2ca04d97a1 /web/app/controller | |
parent | 1386a568850016ad3a68d9c40d682efa9c407bf4 (diff) | |
parent | 1ff8bbde713392126181dabfeb076a84353cfd83 (diff) | |
download | trackermap-web-af256a07e31d65013c294962ad42443d6e50c5f5.tar.gz trackermap-web-af256a07e31d65013c294962ad42443d6e50c5f5.tar.bz2 trackermap-web-af256a07e31d65013c294962ad42443d6e50c5f5.zip |
Merge pull request #529 from Abyss777/filter_geofences
Implement Geofences column for Devices with filtering
Diffstat (limited to 'web/app/controller')
-rw-r--r-- | web/app/controller/Root.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 27f4f627..d85102a7 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -215,7 +215,8 @@ Ext.define('Traccar.controller.Root', { if (entity) { entity.set({ status: array[i].status, - lastUpdate: array[i].lastUpdate + lastUpdate: array[i].lastUpdate, + geofenceIds: array[i].geofenceIds }, { dirty: false }); |