From 78faa7430a7e906106109e733f521ad42ce723b3 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 2 Dec 2019 21:59:17 -0500 Subject: [PATCH] [+] Add maintenance message --- src/components/overlays/maintenance.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/overlays/maintenance.vue b/src/components/overlays/maintenance.vue index 468e2f9..89d7dc0 100644 --- a/src/components/overlays/maintenance.vue +++ b/src/components/overlays/maintenance.vue @@ -5,7 +5,12 @@

Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!

-

— Veracross Analyzer

+ +

What went wrong: {{json.reason}}

+ +

Estimated fix: {{json.eta}}

+ +

— An Average SJP Junior

@@ -18,6 +23,11 @@ export default class Maintenance extends Vue { @Prop({required: true}) message: any; + + get json() + { + return JSON.parse(this.message); + } }