fix(combobox): allow for null emptyFilterKey and fix setSelection
This commit is contained in:
parent
6b5aa697cf
commit
9468471164
2 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,7 @@ export const SingleComboBoxProps = s.assign(
|
|||
s.partial(
|
||||
s.object({
|
||||
selectedKey: s.nullable(s.string()),
|
||||
emptyFilterKey: s.string()
|
||||
emptyFilterKey: s.nullable(s.string())
|
||||
})
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue