fix: drop unused search text

This commit is contained in:
Cory Dransfeldt 2024-03-21 10:45:31 -07:00
parent e9c08c1a90
commit ed560d1bfe
No known key found for this signature in database
3 changed files with 3 additions and 5 deletions

View file

@ -16,7 +16,7 @@
let resultsById = {}
// fetch index
const results = fetch('/api/search').then(response => response.json())
fetch('/api/search').then(response => response.json())
.then((results) => {
resultsById = results.reduce((byId, result) => {
byId[result.id] = result
@ -25,7 +25,7 @@
return miniSearch.addAll(results)
})
$input.addEventListener('input', (event) => {
$input.addEventListener('input', () => {
const query = $input.value
const results = (query.length > 1) ? getSearchResults(query) : []
if (query === '') renderSearchResults([])