mail: fix count indicator when loading

This commit is contained in:
Girish Ramakrishnan
2025-11-15 11:00:54 +01:00
parent 11c5a3f050
commit 6346c7fe9b
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -234,7 +234,7 @@ onMounted(async () => {
<Section :title="$t('email.incoming.mailboxes.title')">
<template #header-title-extra>
<span style="font-weight: normal; font-size: 14px">({{ $t('email.incoming.mailboxes.stats', { mailboxCount: filteredMailboxes.length, usage: prettyDecimalSize(filteredMailboxesUsage) }) }})</span>
<span style="font-weight: normal; font-size: 14px">({{ $t('email.incoming.mailboxes.stats', { mailboxCount: busy ? '-' : filteredMailboxes.length, usage: busy ? '-' : prettyDecimalSize(filteredMailboxesUsage) }) }})</span>
</template>
<template #header-buttons>
<TextInput :placeholder="$t('main.searchPlaceholder')" style="flex-grow: 1;" v-model="searchFilter"/>