Various mobile overflow fixes

This commit is contained in:
Johannes Zellner
2025-03-26 16:04:58 +01:00
parent 785db03650
commit 67728851a3
20 changed files with 167 additions and 64 deletions
+14 -3
View File
@@ -26,9 +26,20 @@ const dashboardModel = DashboardModel.create();
const columns = {
preserveSecs: {}, // archived
packageVersion: { label: t('backups.listing.version'), sort: true },
creationTime: { label: t('main.table.date'), sort: true },
content: { label: t('backups.listing.contents'), sort: false },
packageVersion: {
label: t('backups.listing.version'),
sort: true,
hideMobile: true,
},
creationTime: {
label: t('main.table.date'),
sort: true
},
content: {
label: t('backups.listing.contents'),
sort: false,
hideMobile: true,
},
actions: {}
};