Coerce picker option labels to strings to fix bug when using autocomplete on numeric label types

This commit is contained in:
Andrew Kingston 2021-12-06 18:22:19 +00:00
parent 39e1e84512
commit c21f4b9681
1 changed files with 3 additions and 3 deletions

View File

@ -63,9 +63,9 @@
const getFilteredOptions = (options, term, getLabel) => {
if (autocomplete && term) {
const lowerCaseTerm = term.toLowerCase()
return options.filter(option =>
getLabel(option)?.toLowerCase().includes(lowerCaseTerm)
)
return options.filter(option => {
return `${getLabel(option)}`?.toLowerCase().includes(lowerCaseTerm)
})
}
return options
}