Remove overflow-hidden from TaskFileExplorerDrawer container to allow the virtualized FileTree's internal scroll container to function properly. The overflow-hidden was clipping the scroll area, preventing users from accessing files beyond the initially visible portion of the list. Signed-off-by: ashwinhegde19 <ashwinhegde19@gmail.com> Co-authored-by: Andy <119136210+AndyMik90@users.noreply.github.com>
This commit is contained in:
@@ -105,7 +105,7 @@ export function TaskFileExplorerDrawer({ isOpen, onClose, projectPath }: TaskFil
|
||||
</div>
|
||||
|
||||
{/* File tree - no ScrollArea wrapper as FileTree uses virtualization with its own scroll container */}
|
||||
<div className="flex-1 overflow-hidden min-h-0">
|
||||
<div className="flex-1 min-h-0">
|
||||
<FileTree rootPath={projectPath} />
|
||||
</div>
|
||||
</motion.div>
|
||||
|
||||
Reference in New Issue
Block a user