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/MainController.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/MainController.js')
-rw-r--r-- | web/app/view/MainController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/MainController.js b/web/app/view/MainController.js index 7cd03050..8ed986af 100644 --- a/web/app/view/MainController.js +++ b/web/app/view/MainController.js @@ -1,5 +1,5 @@ /* - * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 - 2022 Anton Tananaev (anton@traccar.org) * Copyright 2017 Andrey Kunitsyn (andrey@traccar.org) * * This program is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ Ext.define('Traccar.view.MainController', { alias: 'controller.mainController', init: function () { - this.lookupReference('reportView').setHidden(Traccar.app.getBooleanAttributePreference('ui.disableReport')); + this.lookupReference('reportView').setHidden(Traccar.app.getPreference('disableReports', false)); this.lookupReference('eventsView').setHidden(Traccar.app.getBooleanAttributePreference('ui.disableEvents')); } }); |