fix: remove overflow-hidden que bloqueava scroll do combobox
O overflow-hidden no PopoverContent impedia o scroll da ScrollArea filha. Removendo, o scroll funciona corretamente. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
10918d0893
commit
e401053667
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ export function SearchableCombobox({
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<PopoverContent
|
<PopoverContent
|
||||||
id={listId}
|
id={listId}
|
||||||
className={cn("z-50 w-[var(--radix-popover-trigger-width)] max-w-[480px] overflow-hidden p-0", contentClassName)}
|
className={cn("z-50 w-[var(--radix-popover-trigger-width)] max-w-[480px] p-0", contentClassName)}
|
||||||
collisionPadding={16}
|
collisionPadding={16}
|
||||||
>
|
>
|
||||||
<div className="border-b border-border/80 p-2">
|
<div className="border-b border-border/80 p-2">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue