From 30ade1d79a06cb137ba330279cd3251a9756f9cd Mon Sep 17 00:00:00 2001 From: Richard Roberson Date: Sat, 22 Nov 2025 18:37:38 -0700 Subject: [PATCH] fix(ui): fix chapter list overflow and menu positioning - Add scroll functionality to the chapter list to prevent content overflow. - Conditionally adjust the positioning of chapter action menus to ensure they remain visible within the modal, preventing them from being cut off for chapters at the top of the list. --- src/components/AudiobookExportModal.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/AudiobookExportModal.tsx b/src/components/AudiobookExportModal.tsx index d9712bd..e0cb4ed 100644 --- a/src/components/AudiobookExportModal.tsx +++ b/src/components/AudiobookExportModal.tsx @@ -538,12 +538,15 @@ export function AudiobookExportModal({ {chapters.length > 0 && ( <> -
+

Chapters

{isRefreshingChapters && }
- {displayChapters.map((chapter) => ( + {displayChapters.map((chapter, index) => (
- + {chapter.status === 'completed' && ( <>