diff --git a/dashboard/src/components/ApiTokens.vue b/dashboard/src/components/ApiTokens.vue index 0c5179bd6..ef8a08ad9 100644 --- a/dashboard/src/components/ApiTokens.vue +++ b/dashboard/src/components/ApiTokens.vue @@ -37,10 +37,12 @@ const columns = { }, scope: { label: t('profile.apiTokens.scope'), + hideMobile: true, sort: true }, allowedIpRanges: { label: t('profile.apiTokens.allowedIpRanges'), + hideMobile: true, sort: true }, actions: {} diff --git a/dashboard/src/components/AppArchive.vue b/dashboard/src/components/AppArchive.vue index 2bff74413..4c47f75f4 100644 --- a/dashboard/src/components/AppArchive.vue +++ b/dashboard/src/components/AppArchive.vue @@ -23,9 +23,20 @@ const domainsModel = DomainsModel.create(); const columns = { icon: {}, // archived - location: { label: t('backups.archives.location'), sort: true }, - info: { label: t('backups.archives.info'), sort: false }, - creationTime: { label: t('main.table.date'), sort: true }, + location: { + label: t('backups.archives.location'), + sort: true + }, + info: { + label: t('backups.archives.info'), + sort: false, + hideMobile: true, + }, + creationTime: { + label: t('main.table.date'), + sort: true, + hideMobile: true, + }, actions: {} }; diff --git a/dashboard/src/components/AppPasswords.vue b/dashboard/src/components/AppPasswords.vue index cac9a6b47..baed07c42 100644 --- a/dashboard/src/components/AppPasswords.vue +++ b/dashboard/src/components/AppPasswords.vue @@ -25,10 +25,12 @@ const columns = { }, label: { label: t('profile.appPasswords.app'), - sort: true + sort: true, + hideMobile: true, }, creationTime: { label: t('main.table.date'), + hideMobile: true, sort(a, b) { if (!a) return 1; if (!b) return -1; diff --git a/dashboard/src/components/BackupList.vue b/dashboard/src/components/BackupList.vue index 9c5f227a1..aa92ebd05 100644 --- a/dashboard/src/components/BackupList.vue +++ b/dashboard/src/components/BackupList.vue @@ -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: {} }; diff --git a/dashboard/src/components/MailDomainStatus.vue b/dashboard/src/components/MailDomainStatus.vue index 56f943159..347811f81 100644 --- a/dashboard/src/components/MailDomainStatus.vue +++ b/dashboard/src/components/MailDomainStatus.vue @@ -2,7 +2,6 @@ import { ref, onMounted } from 'vue'; import { Button } from 'pankow'; -import Section from './Section.vue'; import MailModel from '../models/MailModel.js'; const props = defineProps([ 'domain' ]); @@ -59,8 +58,7 @@ onMounted(async () => {