From 82e0262a4fb5bb6b7e064880169d5e3e81f7de70 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Mon, 1 Jun 2026 10:28:28 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20escape=20apostrophe=20in=20TODAY'S=20SCH?= =?UTF-8?q?EDULE=20string=20literal=20=E2=80=94=20SyntaxError=20was=20kill?= =?UTF-8?q?ing=20entire=20main=20JS,=20no=20panels=20loaded?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public_html/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/index.html b/public_html/index.html index 109c4ae..31fbbc8 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -1578,7 +1578,7 @@ async function loadPlannerSummary() { html = '
No tasks or appointments today.
'; } else { if (appts.length) { - html += '
TODAY'S SCHEDULE
'; + html += '
TODAY\'S SCHEDULE
'; html += appts.map(a => `
${fmtTime(a.start_at)}${a.title}${a.location?' ยท '+a.location+'':''}
`).join(''); } if (tasks.length) {