diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-01-31 22:57:36 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2022-01-31 22:57:36 -0800 |
commit | 4dcb17d6d39a944cf0f1186c77b463078485edb7 (patch) | |
tree | 3871a6ebc8cf2705ab22e0e12d796ce29d9a2c40 /web/app/view/map/MapController.js | |
parent | 32792149bbffbc74fbaae85bb3a40beaf30776ef (diff) | |
download | trackermap-web-4dcb17d6d39a944cf0f1186c77b463078485edb7.tar.gz trackermap-web-4dcb17d6d39a944cf0f1186c77b463078485edb7.tar.bz2 trackermap-web-4dcb17d6d39a944cf0f1186c77b463078485edb7.zip |
Add option to disable reports
Diffstat (limited to 'web/app/view/map/MapController.js')
-rw-r--r-- | web/app/view/map/MapController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/map/MapController.js b/web/app/view/map/MapController.js index d025b586..f6d88eed 100644 --- a/web/app/view/map/MapController.js +++ b/web/app/view/map/MapController.js @@ -1,5 +1,5 @@ /* - * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2022 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -45,7 +45,7 @@ Ext.define('Traccar.view.map.MapController', { init: function () { this.callParent(); this.lookupReference('showReportsButton').setVisible( - Traccar.app.isMobile() && !Traccar.app.getBooleanAttributePreference('ui.disableReport')); + Traccar.app.isMobile() && !Traccar.app.getPreference('disableReports', false)); this.lookupReference('showEventsButton').setVisible( Traccar.app.isMobile() && !Traccar.app.getBooleanAttributePreference('ui.disableEvents')); }, |