Add basic archive restore dialog
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user