Hide app backups view for proxy app

This commit is contained in:
Johannes Zellner
2022-09-29 15:51:21 +02:00
parent 2201240ce8
commit c17293401b

View File

@@ -638,7 +638,7 @@
<div ng-click="setView('email')" ng-class="{ 'active': view === 'email' }" ng-show="app.accessLevel === 'admin' && (app.manifest.addons.sendmail || app.manifest.addons.recvmail) && app.type !== APP_TYPES.PROXIED">{{ 'app.emailTabTitle' | tr }}</div>
<div ng-click="setView('cron')" ng-class="{ 'active': view === 'cron' }" ng-show="app.type !== APP_TYPES.PROXIED">{{ 'app.cronTabTitle' | tr }}</div>
<div ng-click="setView('updates')" ng-class="{ 'active': view === 'updates' }">{{ 'app.updatesTabTitle' | tr }}</div>
<div ng-click="setView('backups')" ng-class="{ 'active': view === 'backups' }">{{ 'app.backupsTabTitle' | tr }}</div>
<div ng-click="setView('backups')" ng-class="{ 'active': view === 'backups' }" ng-show="app.type !== APP_TYPES.PROXIED">{{ 'app.backupsTabTitle' | tr }}</div>
<div ng-click="setView('repair')" ng-class="{ 'active': view === 'repair' }">{{ 'app.repairTabTitle' | tr }}</div>
<div ng-click="setView('eventlog')" ng-class="{ 'active': view === 'eventlog' }">{{ 'app.eventlogTabTitle' | tr }}</div>
<div ng-click="setView('uninstall')" ng-class="{ 'active': view === 'uninstall' }" ng-show="app.accessLevel === 'admin'">{{ 'app.uninstallTabTitle' | tr }}</div>