Merge pull request #2020 from nextcloud/bugfix/noid/navigation
Fix navigation issue with leftover nodes
This commit is contained in:
@@ -21,8 +21,7 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div id="app-navigation" :class="{'icon-loading': loading}">
|
<AppNavigationVue :class="{'icon-loading': loading}">
|
||||||
<AppNavigationVue>
|
|
||||||
<ul>
|
<ul>
|
||||||
<AppNavigationBoardCategory
|
<AppNavigationBoardCategory
|
||||||
id="deck-navigation-all"
|
id="deck-navigation-all"
|
||||||
@@ -61,21 +60,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</AppNavigationSettings>
|
</AppNavigationSettings>
|
||||||
</AppNavigationVue>
|
</AppNavigationVue>
|
||||||
|
|
||||||
<ul id="deck-navigation">
|
|
||||||
<AppNavigationAddBoard v-if="canCreate" />
|
|
||||||
</ul>
|
|
||||||
<div v-if="isAdmin"
|
|
||||||
id="app-settings"
|
|
||||||
v-click-outside="closeMenu"
|
|
||||||
:class="{open: opened}">
|
|
||||||
<div id="app-settings-header">
|
|
||||||
<button class="settings-button" @click="toggleMenu">
|
|
||||||
{{ t('deck', 'Settings') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -151,12 +135,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
toggleMenu() {
|
|
||||||
this.opened = !this.opened
|
|
||||||
},
|
|
||||||
closeMenu() {
|
|
||||||
this.opened = false
|
|
||||||
},
|
|
||||||
updateConfig() {
|
updateConfig() {
|
||||||
this.groupLimitDisabled = true
|
this.groupLimitDisabled = true
|
||||||
axios.post(generateUrl('apps/deck/config/groupLimit'), {
|
axios.post(generateUrl('apps/deck/config/groupLimit'), {
|
||||||
|
|||||||
Reference in New Issue
Block a user