Browse Source

Minor UI fix to explorer tree (#3328)

Co-authored-by: Tim O'Farrell <tofarr@gmai.com>
Co-authored-by: Graham Neubig <neubig@gmail.com>
tofarr 1 năm trước cách đây
mục cha
commit
ace733cb1f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      frontend/src/components/file-explorer/ExplorerTree.tsx

+ 1 - 1
frontend/src/components/file-explorer/ExplorerTree.tsx

@@ -18,7 +18,7 @@ function ExplorerTree({ files, defaultOpen = false }: ExplorerTreeProps) {
     );
   }
   return (
-    <div className="w-full overflow-x-auto h-full pt-[4px]">
+    <div className="w-full h-full pt-[4px]">
       {files.map((file) => (
         <TreeNode key={file} path={file} defaultOpen={defaultOpen} />
       ))}