Add missing empty list placeholder in app backups

This commit is contained in:
Johannes Zellner
2025-08-10 18:06:18 +02:00
parent 76ab99bca6
commit dccdef99c1
+1 -1
View File
@@ -317,7 +317,7 @@ onMounted(async () => {
<p class="has-error" v-if="errorMessage">{{ errorMessage }}</p>
<TableView :model="backups" :columns="columns" :busy="busy" style="max-height: 400px;">
<TableView :model="backups" :columns="columns" :busy="busy" :placeholder="$t('backups.listing.noBackups')" style="max-height: 400px;" >
<template #preserveSecs="backup">
<Icon icon="fa-solid fa-archive" v-show="backup.preserveSecs === -1" />
</template>