From f598516ed01651ca26f27c8544bcd6006b6c8c92 Mon Sep 17 00:00:00 2001 From: Timo Volkmann Date: Fri, 10 May 2019 18:16:03 +0200 Subject: [PATCH] bugfix in overview --- frontend/src/pages/Overview.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/Overview.vue b/frontend/src/pages/Overview.vue index 4daba55..5b3c05e 100644 --- a/frontend/src/pages/Overview.vue +++ b/frontend/src/pages/Overview.vue @@ -123,8 +123,8 @@ async created() { console.log("created(): " + this.caches); - // this.$store.commit('auth/SET_AUTHENTICATED'); - // this.$store.commit('auth/SET_USER'); + this.$store.commit('auth/SET_AUTHENTICATED'); + this.$store.commit('auth/SET_USER'); await this.fetchAllCaches(); this.render = await this.fetchMyCaches(); },