diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-23 14:37:23 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-23 14:37:23 +0500 |
commit | e5cda1b3e0a4735abd512652b5df30331ad6782e (patch) | |
tree | 497060d92985b6dbfdcfa5401882c93e6b140a9e /web/app/store | |
parent | 49f6c1456371dd0bc066a9d6ad40bef824c39977 (diff) | |
download | trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.gz trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.bz2 trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.zip |
- Remove search string
- Rename functions and variables
- Fix device deselect
- Fix appearing features and double visibility check
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/DeviceStatuses.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/app/store/DeviceStatuses.js b/web/app/store/DeviceStatuses.js index 14c1f950..eafba241 100644 --- a/web/app/store/DeviceStatuses.js +++ b/web/app/store/DeviceStatuses.js @@ -17,19 +17,19 @@ */ Ext.define('Traccar.store.DeviceStatuses', { extend: 'Ext.data.Store', - fields: ['id', 'name', 'tdCls'], + fields: ['id', 'name', 'color'], data: [{ id: 'online', name: Strings.deviceStatusOnline, - tdCls: 'view-color-green' + color: 'view-color-green' }, { id: 'offline', name: Strings.deviceStatusOffline, - tdCls: 'view-color-red' + color: 'view-color-red' }, { id: 'unknown', name: Strings.deviceStatusUnknown, - tdCls: 'view-color-yellow' + color: 'view-color-yellow' }] }); |