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:
parent
c146d7ddb2
commit
255d769005
@ -923,6 +923,7 @@ async function selectPodcast(podcastId) {
|
|||||||
CURRENT_PODCAST = podcastId;
|
CURRENT_PODCAST = podcastId;
|
||||||
// Reset mindmap area (might have been used for selector)
|
// Reset mindmap area (might have been used for selector)
|
||||||
const mindmap = document.getElementById('mindmap');
|
const mindmap = document.getElementById('mindmap');
|
||||||
|
mindmap.style.overflow = 'hidden';
|
||||||
mindmap.style.display = '';
|
mindmap.style.display = '';
|
||||||
mindmap.style.alignItems = '';
|
mindmap.style.alignItems = '';
|
||||||
mindmap.style.justifyContent = '';
|
mindmap.style.justifyContent = '';
|
||||||
@ -955,8 +956,9 @@ function showPodcastSelector(podcasts) {
|
|||||||
document.getElementById('cross-toggle').style.display = '';
|
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.innerHTML = '';
|
||||||
|
mindmap.style.overflow = 'auto';
|
||||||
mindmap.style.display = 'flex';
|
mindmap.style.display = 'flex';
|
||||||
mindmap.style.alignItems = 'center';
|
mindmap.style.alignItems = 'center';
|
||||||
mindmap.style.justifyContent = 'center';
|
mindmap.style.justifyContent = 'center';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user