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}

- \`; + `; } });