mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 03:24:20 +00:00
parent
e677bb5785
commit
262e2aee19
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ export function FormSelect<T>({label, validity, options, pairProps, labelProps,
|
|||
)
|
||||
|
||||
const optionComponents = React.useMemo(
|
||||
() => Object.entries(options).map(([optKey, optValue]) => <Select.Option value={optKey} key={optKey}/>),
|
||||
() => Object.entries(options).map(([optKey, optValue]) => <Select.Option value={optKey} key={optKey} selected={value === optValue}/>),
|
||||
[options],
|
||||
)
|
||||
|
||||
|
@ -47,7 +47,7 @@ export function FormSelect<T>({label, validity, options, pairProps, labelProps,
|
|||
<FormPair
|
||||
label={<FormLabel {...labelProps}>{label}</FormLabel>}
|
||||
input={
|
||||
<Select onSimpleChange={onSimpleChangeWrapped} value={value} {...props}>
|
||||
<Select onSimpleChange={onSimpleChangeWrapped} {...props}>
|
||||
{optionComponents}
|
||||
</Select>
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue