Add repair app configure view

This commit is contained in:
Johannes Zellner
2025-02-22 18:31:21 +01:00
parent 3e2177b402
commit c593b4180a
5 changed files with 105 additions and 21 deletions

View File

@@ -11,6 +11,7 @@ import { Button, ButtonGroup } from 'pankow';
import Info from '../components/app/Info.vue';
import Security from '../components/app/Security.vue';
import Cron from '../components/app/Cron.vue';
import Repair from '../components/app/Repair.vue';
import Eventlog from '../components/app/Eventlog.vue';
import Updates from '../components/app/Updates.vue';
import Uninstall from '../components/app/Uninstall.vue';
@@ -186,7 +187,7 @@ onBeforeUnmount(() => {
<Cron :app="app" v-if="view === 'cron'"/>
<Updates :app="app" v-if="view === 'updates'"/>
<div v-if="view === 'backups'"></div>
<div v-if="view === 'repair'"></div>
<Repair :app="app" v-if="view === 'repair'"/>
<Eventlog :app="app" v-if="view === 'eventlog'"/>
<Uninstall :app="app" v-if="view === 'uninstall'"/>
</div>