From f878063015cf44720091c8b54382c35020d64bc0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 9 May 2020 22:24:42 +0200 Subject: [PATCH] Only set fullpage state to false if the page is actually fullpage --- src/App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index de6fba5e..31ff403b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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