diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index 2918915b4..cee4fadbd 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -20,6 +20,8 @@ > + + @@ -43,10 +45,11 @@ import {mapState} from 'vuex' import {CURRENT_LIST, KEYBOARD_SHORTCUTS_ACTIVE, MENU_ACTIVE} from '@/store/mutation-types' import Navigation from '@/components/home/navigation' +import QuickActions from '@/components/quick-actions/quick-actions' export default { name: 'contentAuth', - components: {Navigation}, + components: {QuickActions, Navigation}, watch: { '$route': 'doStuffAfterRoute', }, @@ -83,7 +86,7 @@ export default { this.$route.name === 'user.settings' || this.$route.name === 'namespaces.index' ) { - this.$store.commit(CURRENT_LIST, {}) + this.$store.commit(CURRENT_LIST, null) } }, renewTokenOnFocus() { diff --git a/src/components/home/topNavigation.vue b/src/components/home/topNavigation.vue index fed0f0a4e..5a475f154 100644 --- a/src/components/home/topNavigation.vue +++ b/src/components/home/topNavigation.vue @@ -37,6 +37,14 @@