From 6e2f9b4f94444f22d4f529945d5ec2045c6a7a88 Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Sat, 23 May 2026 00:49:26 -0400 Subject: [PATCH] fix: resolve syntax error in dashboard.js caused by escaped template literals --- dashboard.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dashboard.js b/dashboard.js index cd5e4eb..83d8ef5 100644 --- a/dashboard.js +++ b/dashboard.js @@ -611,13 +611,13 @@ function renderAlerts(alerts) { alerts.forEach((alert, index) => { if (alert.is_dangerous) { - html += \` + html += `
- Alert #\${index + 1} -

\${alert.danger_explanation}

-

Action: \${alert.recommended_action}

+ Alert #${index + 1} +

${alert.danger_explanation}

+

Action: ${alert.recommended_action}

- \`; + `; } });