Fix: overflow:hidden verhinderte Podcast-Selector-Anzeige

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) <noreply@anthropic.com>
This commit is contained in:
Dotty Dotter 2026-04-24 11:51:33 +02:00
parent c146d7ddb2
commit 255d769005

View File

@ -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';