Rename backup label to name and separate backup listing into new view
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<script setup>
|
||||
|
||||
import BackupList from '../components/BackupList.vue';
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<BackupList />
|
||||
</div>
|
||||
</template>
|
||||
@@ -30,12 +30,12 @@ const columns = {
|
||||
status: {
|
||||
width: '30px',
|
||||
},
|
||||
provider: {
|
||||
label: 'Provider',
|
||||
name: {
|
||||
label: 'Name',
|
||||
sort: true,
|
||||
},
|
||||
label: {
|
||||
label: 'Label',
|
||||
provider: {
|
||||
label: 'Provider',
|
||||
sort: true,
|
||||
},
|
||||
format: {
|
||||
@@ -164,13 +164,14 @@ onMounted(async () => {
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #name="target">
|
||||
{{ target.name }}
|
||||
</template>
|
||||
|
||||
<template #provider="target">
|
||||
{{ target.provider }}
|
||||
</template>
|
||||
|
||||
<template #label="target">
|
||||
{{ target.label }}
|
||||
</template>
|
||||
|
||||
<template #format="target">
|
||||
{{ target.format }}
|
||||
|
||||
Reference in New Issue
Block a user