From d72a6f30df35cb0d4f710fa8b7301d92bb90bb81 Mon Sep 17 00:00:00 2001 From: Dotty Dotter Date: Wed, 6 May 2026 18:32:28 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Cluster-Detail-View=20unsichtbar=20?= =?UTF-8?q?=E2=80=94=20display:''=20griff=20CSS-default=20'none'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Beim Klick auf eine Cluster-Card setzte showCluster() detail.style.display = ''. Da #cluster-detail per CSS aber 'display:none' hat, fiel der Style auf 'none' zurueck — Detail-View blieb unsichtbar, Force-Graph wurde nie gesehen. Fix: explizit 'block' setzen. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/templates/v2/screens/cluster.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/v2/screens/cluster.html b/app/templates/v2/screens/cluster.html index 442db10..a67a5b8 100644 --- a/app/templates/v2/screens/cluster.html +++ b/app/templates/v2/screens/cluster.html @@ -222,7 +222,7 @@ function showCluster(idx) { document.getElementById('cluster-list').style.display = 'none'; const detail = document.getElementById('cluster-detail'); const content = document.getElementById('cluster-detail-content'); - detail.style.display = ''; + detail.style.display = 'block'; const members = cl.drucksachen || cl.members || []; const label = cl.label || cl.title || ('Cluster ' + (idx + 1));