Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-05-20 14:55:49 +0300
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-05-20 14:55:49 +0300
commit013c2cae274cf5242c9c72aa30b1ddd0ad116d88 (patch)
tree98bf309d0055c82b9108c4df3c999e7f140cc424 /src
parent51a9b5b57263565b3218f199c40b36d63f72d3a7 (diff)
Hide subscribed / unsubscribed checkbox for "Favourites" folder
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NavigationMailbox.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NavigationMailbox.vue b/src/components/NavigationMailbox.vue
index 0b69fc4c7..0ba26d1b1 100644
--- a/src/components/NavigationMailbox.vue
+++ b/src/components/NavigationMailbox.vue
@@ -260,7 +260,7 @@ export default {
return this.mailbox.name.toLowerCase() !== 'inbox'
},
notVirtual() {
- return !this.account.isUnified && this.mailbox.specialRole !== 'flagged'
+ return !this.account.isUnified && this.mailbox.specialRole !== 'flagged' && !this.filter
},
title() {
if (this.filter === 'starred') {