From 307866c304a526c46a5c5011a7f20403353dde24 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sat, 21 Dec 2019 05:27:30 +0000 Subject: [PATCH] fix reload not working properly --- web/src/views/Dashboard.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/views/Dashboard.vue b/web/src/views/Dashboard.vue index ca225fe4..3c5c0c0a 100644 --- a/web/src/views/Dashboard.vue +++ b/web/src/views/Dashboard.vue @@ -265,6 +265,9 @@ export default { this.$store.dispatch("getUpdatedSites"); }, mounted() { + if (localStorage.getItem("reloaded")) { + localStorage.removeItem("reloaded"); + }; this.loadFrame(this.activeNode); } };