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

This commit is contained in:
xielong 2024-05-31 08:55:37 +08:00 committed by GitHub
parent 3de8e8fd6a
commit e9904e66e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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