From bc47e30ad34e50fbc3992fa0dd2c7b95f3fb3742 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 1 Dec 2025 17:22:58 +0100 Subject: [PATCH] Use storageQuota instead of quotaLimit in the mailbox list --- dashboard/src/components/MailboxDialog.vue | 2 +- dashboard/src/views/EmailMailboxesView.vue | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dashboard/src/components/MailboxDialog.vue b/dashboard/src/components/MailboxDialog.vue index c718fe976..ed3405a67 100644 --- a/dashboard/src/components/MailboxDialog.vue +++ b/dashboard/src/components/MailboxDialog.vue @@ -107,7 +107,7 @@ defineExpose({ active.value = m ? m.active : true; enablePop3.value = m ? m.enablePop3 : false; storageQuotaEnabled.value = m && m.storageQuota ? true : false; - storageQuota.value = m ? m.storageQuota : 5*1000*1000*1000; + storageQuota.value = m && m.storageQuota ? m.storageQuota : 5*1000*1000*1000; usersAndGroupsAndApps.value = []; if (props.users.length) usersAndGroupsAndApps.value.push({ separator: true, label: 'Users' }); diff --git a/dashboard/src/views/EmailMailboxesView.vue b/dashboard/src/views/EmailMailboxesView.vue index 0b45c850e..0db35be08 100644 --- a/dashboard/src/views/EmailMailboxesView.vue +++ b/dashboard/src/views/EmailMailboxesView.vue @@ -205,7 +205,6 @@ async function refresh() { async function onMailboxDialogSuccess(mailbox) { await refreshDomain(mailbox.domain); - await refreshDomainUsage(mailbox.domain); } onMounted(async () => { @@ -277,7 +276,7 @@ onMounted(async () => { {{ $t('main.loadingPlaceholder') }} ...