Add basic archive restore dialog

This commit is contained in:
Johannes Zellner
2025-02-06 18:22:07 +01:00
parent 0b73633a66
commit 05f31f40eb
5 changed files with 402 additions and 1 deletions
+2
View File
@@ -6,6 +6,7 @@ import { Button } from 'pankow';
import Section from '../components/Section.vue';
import BackupSchedule from '../components/BackupSchedule.vue';
import BackupList from '../components/BackupList.vue';
import AppArchive from '../components/AppArchive.vue';
import BackupsModel from '../models/BackupsModel.js';
import ProfileModel from '../models/ProfileModel.js';
@@ -119,5 +120,6 @@ onMounted(async () => {
<BackupSchedule :profile="profile"/>
<BackupList :config="config"/>
<AppArchive :config="config"/>
</div>
</template>
+1 -1
View File
@@ -292,7 +292,7 @@ onMounted(async () =>{
<Button tool secondary small icon="fa fa-pencil-alt" v-if="slotProps.mountType === 'sshfs' || slotProps.mountType === 'cifs' || slotProps.mountType === 'nfs'" v-tooltip="$t('volumes.editActionTooltip')" @click="openVolumeDialog(slotProps)"></Button>
<Button tool secondary small icon="fas fa-folder" v-tooltip="$t('volumes.openFileManagerActionTooltip')" :href="'/filemanager.html#/home/volume/' + slotProps.id" target="_blank"></Button>
</ButtonGroup>
<Button tool danger small icon="far fa-trash-alt" v-tooltip="$t('volumes.removeVolumeActionTooltip')" @click="onRemove(slotProps)"></Button>
<Button tool danger small icon="fa-solid fa-trash-alt" v-tooltip="$t('volumes.removeVolumeActionTooltip')" @click="onRemove(slotProps)"></Button>
</div>
</template>
</TableView>