Only set fullpage state to false if the page is actually fullpage
This commit is contained in:
parent
b79593a372
commit
f878063015
1 changed files with 3 additions and 1 deletions
|
@ -317,7 +317,9 @@
|
|||
}
|
||||
},
|
||||
doStuffAfterRoute(e) {
|
||||
this.$store.commit(IS_FULLPAGE, false)
|
||||
if(this.$store.state[IS_FULLPAGE]) {
|
||||
this.$store.commit(IS_FULLPAGE, false)
|
||||
}
|
||||
this.loadNamespacesIfNeeded(e)
|
||||
this.mobileMenuActive = false
|
||||
this.userMenuActive = false
|
||||
|
|
Loading…
Reference in a new issue