From 5418c6291a39d27aeee471673adba742080e1ccb Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Sun, 18 Sep 2022 16:29:55 +0200 Subject: Fix UptimeKuma status message when all sites are down #503 --- src/App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/App.vue') diff --git a/src/App.vue b/src/App.vue index 5ab5c0d..f2089ee 100644 --- a/src/App.vue +++ b/src/App.vue @@ -207,7 +207,9 @@ export default { this.currentPage = window.location.hash.substring(1) || "default"; if (this.currentPage !== "default") { - let pageConfig = await this.getConfig(`assets/${this.currentPage}.yml`); + let pageConfig = await this.getConfig( + `assets/${this.currentPage}.yml` + ); config = Object.assign(config, pageConfig); } } catch (error) { -- cgit v1.2.3