From bcaf6a270b2295f14fe68a893749d5ff268f6772 Mon Sep 17 00:00:00 2001 From: claude-dev Date: Sun, 8 Mar 2026 17:00:42 +0100 Subject: [PATCH] Fix: Escaped Backticks durch korrekte nested Template-Literale ersetzt `...` innerhalb von ${} Expressions ist kein valides JS und verhinderte Variablen-Substitution + crashte das Script in manchen Browsern, wodurch alle Quellen-Tabs nicht funktionierten. Co-Authored-By: Claude Opus 4.6 --- src/static/js/source-health.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/source-health.js b/src/static/js/source-health.js index 1630435..bbff3d0 100644 --- a/src/static/js/source-health.js +++ b/src/static/js/source-health.js @@ -173,7 +173,7 @@ function renderHealthDashboard() { ${CHECK_TYPE_LABELS[c.check_type] || c.check_type} ${c.status === "error" ? "Fehler" : "Warnung"} ${esc(c.message)} - ${c.status === "error" && c.check_type === "reachability" ? \`\` : ""} + ${c.status === "error" && c.check_type === "reachability" ? `` : ""} `, ) .join("")}