Skip to content

Commit

Permalink
Merge pull request Ray-D-Song#25 from Ray-D-Song/plugin-select-scroll
Browse files Browse the repository at this point in the history
fix: add max height to folder selection dropdown
  • Loading branch information
banzhe authored Nov 2, 2024
2 parents 5e3fa31 + 07b6f5d commit 4b20359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin/popup/components/UploadPageForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function UploadPageForm({ setActivePage }: UploadPageFormProps) {
<SelectTrigger>
<SelectValue placeholder="select folder"></SelectValue>
</SelectTrigger>
<SelectContent>
<SelectContent className="max-h-48">
{folderList && folderList.map(folder => (
<SelectItem key={folder.id} value={folder.id.toString()}>
{folder.name}
Expand Down

0 comments on commit 4b20359

Please sign in to comment.