diff --git a/src/pages/StatusPage.vue b/src/pages/StatusPage.vue
index dcee15e7b..f4a6eb76d 100644
--- a/src/pages/StatusPage.vue
+++ b/src/pages/StatusPage.vue
@@ -20,6 +20,9 @@
+
+ {{ $t("markdownSupported") }}
+
@@ -258,7 +261,9 @@
{{ $t("Description") }}:
-
+
+
+
@@ -500,6 +505,10 @@ export default {
return DOMPurify.sanitize(marked(this.incident.content));
},
+ descriptionHTML() {
+ return DOMPurify.sanitize(marked(this.config.description));
+ },
+
footerHTML() {
return DOMPurify.sanitize(marked(this.config.footerText));
},