Added missing toLowerCase()
This commit is contained in:
parent
79fc691bfe
commit
7bd53a9786
1 changed files with 1 additions and 1 deletions
|
|
@ -418,7 +418,7 @@ function shouldDisplayDownload(download, displayedManufacturers, displayedMcufam
|
|||
].join(" ").toLowerCase();
|
||||
|
||||
|
||||
for (const term of downloadsSearch.searchTerm.split(" ")) {
|
||||
for (const term of downloadsSearch.searchTerm.toLowerCase().split(" ")) {
|
||||
if (!downloadData.includes(term)) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue