Remove backup list from backup targets view

This commit is contained in:
Johannes Zellner
2025-08-04 15:17:46 +02:00
parent 705311f01f
commit cf86645bb5
2 changed files with 2 additions and 6 deletions
@@ -10,7 +10,6 @@ import Section from '../components/Section.vue';
import StateLED from '../components/StateLED.vue';
import BackupScheduleDialog from '../components/BackupScheduleDialog.vue';
import BackupTargetDialog from '../components/BackupTargetDialog.vue';
import BackupList from '../components/BackupList.vue';
import BackupTargetsModel from '../models/BackupTargetsModel.js';
import ProfileModel from '../models/ProfileModel.js';
@@ -20,7 +19,6 @@ const backupTargetsModel = BackupTargetsModel.create();
const inputDialog = useTemplateRef('inputDialog');
const profile = ref({});
const config = ref({});
const targets = ref([]);
const columns = {
@@ -190,7 +188,5 @@ onMounted(async () => {
</template>
</TableView>
</Section>
<BackupList :config="config"/>
</div>
</template>