Right align table headers for backup content info

This commit is contained in:
Johannes Zellner
2026-02-02 16:41:47 +01:00
parent 375b7f6dd7
commit 28573f9676
@@ -25,12 +25,14 @@ const backupContentTableColumns = {
sort(a, b, A, B) { sort(a, b, A, B) {
return A.stats?.upload?.fileCount - B.stats?.upload?.fileCount; return A.stats?.upload?.fileCount - B.stats?.upload?.fileCount;
}, },
align: 'right',
}, },
size: { size: {
label: t('backup.target.size'), label: t('backup.target.size'),
sort(a, b, A , B) { sort(a, b, A , B) {
return A.stats?.upload?.size - B.stats?.upload?.size; return A.stats?.upload?.size - B.stats?.upload?.size;
}, },
align: 'right',
} }
}; };