Skip to content

Commit

Permalink
Fix: Adjust spacing and overflow behavior in FileUploadDialog compone…
Browse files Browse the repository at this point in the history
…nt (#10133)
  • Loading branch information
DonXavierdev authored Jan 30, 2025
1 parent b949c64 commit 3bdb1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Files/FilesTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ const FileUploadDialog = ({
{fileUpload.files.length > 1 ? t("upload_files") : t("upload_file")}
</DialogTitle>
</DialogHeader>
<div className="space-y-4">
<div className="space-y-6 pr-5 max-h-[70vh] overflow-y-auto">
{fileUpload.files.map((file, index) => (
<div key={index} className="space-y-2">
<div className="flex items-center justify-between gap-2 rounded-md bg-secondary-300 px-4 py-2">
Expand Down

0 comments on commit 3bdb1ee

Please sign in to comment.