Right align table headers for backup content info
This commit is contained in:
@@ -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',
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user