diff --git a/dashboard/src/views/BackupListView.vue b/dashboard/src/views/BackupListView.vue
index 2c978568b..cd3ec14f1 100644
--- a/dashboard/src/views/BackupListView.vue
+++ b/dashboard/src/views/BackupListView.vue
@@ -44,6 +44,10 @@ const columns = {
sort: false,
hideMobile: true,
},
+ target: {
+ label: 'Storage',
+ sort: true
+ },
actions: {}
};
@@ -172,6 +176,7 @@ async function refreshBackups() {
});
result.forEach(function (backup) {
+ backup.target = targets.value.find(t => t.id === backup.targetId);
backup.contents = []; // { id, label, fqdn }
backup.dependsOn.forEach(function (appBackupId) {
const match = appBackupId.match(/app_(.*?)_.*/); // *? means non-greedy
@@ -450,6 +455,8 @@ onMounted(async () => {
{{ $t('backups.listing.noApps') }}
+ {{ backup.target.name }}
+