fix: multiselect is broken (#19351)
This commit is contained in:
@@ -29,7 +29,7 @@ export const Select = <
|
||||
components,
|
||||
variant = "default",
|
||||
size = "md",
|
||||
grow,
|
||||
grow = true,
|
||||
...props
|
||||
}: SelectProps<Option, IsMulti, Group> & {
|
||||
innerClassNames?: {
|
||||
@@ -63,7 +63,7 @@ export const Select = <
|
||||
control: (base) => ({
|
||||
...base,
|
||||
minHeight: size === "sm" ? "28px" : "36px",
|
||||
height: grow ? "h-auto " : size === "sm" ? "28px" : "36px",
|
||||
height: grow ? "auto" : size === "sm" ? "28px" : "36px",
|
||||
}),
|
||||
}}
|
||||
classNames={{
|
||||
|
||||
Reference in New Issue
Block a user