Merge pull request #2116 from nextcloud/bugfix/noid/navigation-vue

Adjust navigation to new component slots
This commit is contained in:
Julius Härtl
2020-07-13 11:47:34 +02:00
committed by GitHub

View File

@@ -22,7 +22,7 @@
<template> <template>
<AppNavigationVue :class="{'icon-loading': loading}"> <AppNavigationVue :class="{'icon-loading': loading}">
<ul> <template #list>
<AppNavigationBoardCategory <AppNavigationBoardCategory
id="deck-navigation-all" id="deck-navigation-all"
to="/board" to="/board"
@@ -43,7 +43,8 @@
:boards="sharedBoards" :boards="sharedBoards"
icon="icon-shared" /> icon="icon-shared" />
<AppNavigationAddBoard v-if="canCreate" /> <AppNavigationAddBoard v-if="canCreate" />
</ul> </template>
<template #footer>
<AppNavigationSettings> <AppNavigationSettings>
<div> <div>
<Multiselect v-model="groupLimit" <Multiselect v-model="groupLimit"
@@ -59,6 +60,7 @@
<p>{{ t('deck', 'Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.') }}</p> <p>{{ t('deck', 'Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.') }}</p>
</div> </div>
</AppNavigationSettings> </AppNavigationSettings>
</template>
</AppNavigationVue> </AppNavigationVue>
</template> </template>