Skip to content

Commit a5bb4b6

Browse files
authored
Merge pull request #12027 from nextcloud/add/account-error-no-connection
fix: warning for accounts that can't connect
2 parents ce5372c + 1ee0d5d commit a5bb4b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/Navigation.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
:is-first="isFirst(group.account)"
2727
:is-last="isLast(group.account)"
2828
:is-disabled="isDisabled(group.account)" />
29-
<template v-if="!isDisabled(group.account)">
29+
<template v-if="group.account.error">
30+
{{ t('mail', 'Connection failed. Please verify your information and try again') }}
31+
</template>
32+
<template v-else-if="!isDisabled(group.account)">
3033
<template v-for="item in group.mailboxes">
3134
<NavigationMailbox
3235
v-show="

0 commit comments

Comments
 (0)