Skip to content

Commit

Permalink
Fix: Adjust spacing and overflow behavior in FileUploadDialog component
Browse files Browse the repository at this point in the history
  • Loading branch information
DonXavierdev committed Jan 24, 2025
1 parent 923423f commit 6b87ab4
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 6b87ab4

Please sign in to comment.