Skip to content

Commit 0bbe798

Browse files
authored
Merge pull request #97 from dreglad/patch-2
Fix rows per page select width to fit content in ListPagination
2 parents 8413658 + e056bab commit 0bbe798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/admin/list-pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const ListPagination = ({
120120
setPerPage(Number(value));
121121
}}
122122
>
123-
<SelectTrigger className="h-8 w-[70px]">
123+
<SelectTrigger className="h-8 w-fit">
124124
<SelectValue placeholder={perPage} />
125125
</SelectTrigger>
126126
<SelectContent side="top">

0 commit comments

Comments
 (0)