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-02-09 12:48:25 +0300
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-02-09 12:48:25 +0300
commit47049245d60798bf39ba2ebad810971f190d22db (patch)
treeb5e823d2ef674b63cbc4cb737e332a176e815bd0 /src
parentd74882d0a70ca933872ca74fbfd7296b1de40e2e (diff)
NavigationMailbox.vue has been changed
"top" prop has been removed. it is possible to create submailbox inside of submailboxes. Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NavigationMailbox.vue9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/components/NavigationMailbox.vue b/src/components/NavigationMailbox.vue
index 3f88335a3..695277b07 100644
--- a/src/components/NavigationMailbox.vue
+++ b/src/components/NavigationMailbox.vue
@@ -55,7 +55,7 @@
{{ t('mail', 'Mark all messages of this mailbox as read') }}
</ActionButton>
<ActionButton
- v-if="!editing && top && !account.isUnified && hasDelimiter && mailbox.specialRole !== 'flagged'"
+ v-if="!editing && !account.isUnified && hasDelimiter && mailbox.specialRole !== 'flagged'"
icon="icon-folder"
@click="openCreateMailbox">
{{ t('mail', 'Add submailbox') }}
@@ -125,8 +125,7 @@
v-for="subMailbox in subMailboxes"
:key="genId(subMailbox)"
:account="account"
- :mailbox="subMailbox"
- :top="false" />
+ :mailbox="subMailbox" />
</AppNavigationItem>
</template>
@@ -171,10 +170,6 @@ export default {
type: Object,
required: true,
},
- top: {
- type: Boolean,
- default: true,
- },
filter: {
type: String,
default: '',