From 255d76900522cc37eb28b9975f56f6c76c602e83 Mon Sep 17 00:00:00 2001 From: Dotty Dotter Date: Fri, 24 Apr 2026 11:51:33 +0200 Subject: [PATCH] Fix: overflow:hidden verhinderte Podcast-Selector-Anzeige MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Der #mindmap-Container hatte overflow:hidden — die Podcast-Cards wurden gerendert aber abgeschnitten. Jetzt overflow:auto im Selector-Modus. Co-Authored-By: Claude Opus 4.6 (1M context) --- webapp/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webapp/index.html b/webapp/index.html index 58dd327..2d6e1dc 100644 --- a/webapp/index.html +++ b/webapp/index.html @@ -923,6 +923,7 @@ async function selectPodcast(podcastId) { CURRENT_PODCAST = podcastId; // Reset mindmap area (might have been used for selector) const mindmap = document.getElementById('mindmap'); + mindmap.style.overflow = 'hidden'; mindmap.style.display = ''; mindmap.style.alignItems = ''; mindmap.style.justifyContent = ''; @@ -955,8 +956,9 @@ function showPodcastSelector(podcasts) { document.getElementById('cross-toggle').style.display = ''; } - // Hide mindmap, show selector full-width in mindmap area + // Show selector full-width in mindmap area mindmap.innerHTML = ''; + mindmap.style.overflow = 'auto'; mindmap.style.display = 'flex'; mindmap.style.alignItems = 'center'; mindmap.style.justifyContent = 'center';