diff options
| author | Mark :) <Mxrk@users.noreply.github.com> | 2025-04-13 13:39:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 12:39:46 +0100 |
| commit | 6c0638be490afdc7d92dab37fac2330bc1ae4bd1 (patch) | |
| tree | e3c14973e03cd0e2d5adeaf5128ae83e90c09100 /apps/web/components/dashboard/lists/EditListModal.tsx | |
| parent | cf97bace33fdd14f29ce947d55d17cba8fa85c11 (diff) | |
| download | karakeep-6c0638be490afdc7d92dab37fac2330bc1ae4bd1.tar.zst | |
fix(web): fit popover content box to emoji picker size (#1257)
Diffstat (limited to 'apps/web/components/dashboard/lists/EditListModal.tsx')
| -rw-r--r-- | apps/web/components/dashboard/lists/EditListModal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/lists/EditListModal.tsx b/apps/web/components/dashboard/lists/EditListModal.tsx index 2940a856..68d32b0a 100644 --- a/apps/web/components/dashboard/lists/EditListModal.tsx +++ b/apps/web/components/dashboard/lists/EditListModal.tsx @@ -225,7 +225,7 @@ export function EditListModal({ <PopoverTrigger className="h-full rounded border border-input px-2 text-2xl"> {field.value} </PopoverTrigger> - <PopoverContent> + <PopoverContent className="w-auto"> <Picker data={data} onEmojiSelect={(e: { native: string }) => |
