diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index 655be08ee..0c16e56dc 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -59,6 +59,7 @@ export default { doStuffAfterRoute() { // this.setTitle('') // Reset the title if the page component does not set one itself this.$store.commit(IS_FULLPAGE, false) + this.hideMenuOnMobile() this.resetCurrentList() }, resetCurrentList() { @@ -103,6 +104,11 @@ export default { } }) }, + hideMenuOnMobile() { + if (window.innerWidth < 769) { + this.$store.commit(MENU_ACTIVE, false) + } + }, }, }