From 632064d98f9cf8f69337bc844182464cb9992e31 Mon Sep 17 00:00:00 2001 From: Dotty Dotter Date: Fri, 10 Apr 2026 23:40:21 +0200 Subject: [PATCH] Fix: Matrix-Modal onclick via data-Attribute statt inline JS-Quoting --- app/templates/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/index.html b/app/templates/index.html index 80186f5..d09c8b5 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -1940,7 +1940,8 @@ const fullLabel = fieldLabels[field] || field; if (entry) { const cssClass = entry.rating > 0 ? 'positive' : (entry.rating < 0 ? 'negative' : 'neutral'); - matrixTableHtml += `${entry.symbol}`; + // Aspect in data-Attribut speichern statt inline JS-String + matrixTableHtml += `${entry.symbol}`; } else { matrixTableHtml += `○`; }