chore: Enable case-insensitive search for large models (#4817)

pull/4827/head
xielong 2 years ago committed by GitHub
parent 3de8e8fd6a
commit e9904e66e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -27,11 +27,11 @@ const Popup: FC<PopupProps> = ({
model => model.models.filter(
(modelItem) => {
if (modelItem.label[language] !== undefined)
return modelItem.label[language].includes(searchText)
return modelItem.label[language].toLowerCase().includes(searchText.toLowerCase())
let found = false
Object.keys(modelItem.label).forEach((key) => {
if (modelItem.label[key].includes(searchText))
if (modelItem.label[key].toLowerCase().includes(searchText.toLowerCase()))
found = true
})

Loading…
Cancel
Save