Skip to content

Commit

Permalink
Merge pull request #304 from thecodacus/fix-filetree-scroll-fix
Browse files Browse the repository at this point in the history
fix: added scroll fix for file browser
  • Loading branch information
wonderwhy-er authored Nov 16, 2024
2 parents f52ba2e + e2da912 commit 7c687b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/workbench/FileTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const FileTree = memo(
};

return (
<div className={classNames('text-sm', className)}>
<div className={classNames('text-sm', className ,'overflow-y-auto')}>
{filteredFileList.map((fileOrFolder) => {
switch (fileOrFolder.kind) {
case 'file': {
Expand Down

0 comments on commit 7c687b8

Please sign in to comment.