diff --git a/frontend/src/components/SidebarPlugin/SideBar.vue b/frontend/src/components/SidebarPlugin/SideBar.vue index 811baf02e..f1e2a4455 100755 --- a/frontend/src/components/SidebarPlugin/SideBar.vue +++ b/frontend/src/components/SidebarPlugin/SideBar.vue @@ -87,6 +87,7 @@ export default { default: 'img/brand/green.png', description: 'Gradido Sidebar app logo', }, + value: { type: Array }, autoClose: { type: Boolean, default: true, diff --git a/frontend/src/views/Layout/DashboardLayout_gdd.vue b/frontend/src/views/Layout/DashboardLayout_gdd.vue index 575f8a861..d6b9f44ff 100755 --- a/frontend/src/views/Layout/DashboardLayout_gdd.vue +++ b/frontend/src/views/Layout/DashboardLayout_gdd.vue @@ -102,6 +102,7 @@ export default { async logout() { await loginAPI.logout(this.$store.state.sessionId) // do we have to check success? + this.$sidebar.displaySidebar(false) this.$store.dispatch('logout') this.$router.push('/login') },