| 2068 | qry.placeholder = 'Filter icons'; | 2068 | qry.placeholder = 'Filter icons'; |
| 2069 | qry.autofocus = true; | 2069 | qry.autofocus = true; |
| 2070 | const qryDebounced = debounce(() => { | 2070 | const qryDebounced = debounce(() => { |
| 2071 | const result = faList.filter(fa => fa.find(className=>className.includes(qry.value))); | 2071 | const result = faList.filter(fa => fa.find(className=>className.includes(qry.value.toLowerCase()))); |
| 2072 | for (const fa of faList) { | 2072 | for (const fa of faList) { |
| 2073 | if (!result.includes(fa)) { | 2073 | if (!result.includes(fa)) { |
| 2074 | fas[fa].classList.add('hidden'); | 2074 | fas[fa].classList.add('hidden'); |