diff --git a/ui/components/ui/select.tsx b/ui/components/ui/select.tsx index 2407da27..bf94aeb2 100644 --- a/ui/components/ui/select.tsx +++ b/ui/components/ui/select.tsx @@ -20,15 +20,15 @@ const SelectTrigger = React.forwardRef< span]:line-clamp-1", + "flex h-9 w-full items-center justify-between gap-1 whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background data-placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1", className, )} {...props} > -
- {label && {label}:} - {children} -
+ {label && ( + {label}: + )} + {children}