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); + } }