From 8c9d36f4d6a168b0b4258a7efd7afefe47062fbc Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Fri, 24 Nov 2023 07:55:47 +1100 Subject: [PATCH] fix bug with notices on homepage not rendering correctly --- src/SEQTA.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/SEQTA.js b/src/SEQTA.js index 52487e06..a086bcc1 100644 --- a/src/SEQTA.js +++ b/src/SEQTA.js @@ -2343,7 +2343,15 @@ function SendHomePage() { document.getElementById('home-container').append(upcomingcontainer); // Creates the notices container into the home container - const NoticesStr = `

Notices

` + const NoticesStr = String.raw` +
+
+

Notices

+ +
+
+
` + var Notices = stringToHTML(NoticesStr); // Appends the shortcut container into the home container document.getElementById('home-container').append(Notices.firstChild);