mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-06-22 16:54:36 +00:00
fix: jump to search for operand
This commit is contained in:
@ -24,7 +24,7 @@ async function searchContents(query) {
|
||||
},
|
||||
body: JSON.stringify({
|
||||
query: query,
|
||||
limit: 8,
|
||||
limit: 10,
|
||||
}),
|
||||
})
|
||||
if (result.ok) {
|
||||
@ -48,7 +48,7 @@ registerHandlers(
|
||||
debounce((e) => {
|
||||
let term = e.target.value
|
||||
if (term !== "") {
|
||||
searchContents(term).then((results) => displayResults(results))
|
||||
searchContents(term).then((results) => displayResults(term, results))
|
||||
}
|
||||
}),
|
||||
)
|
||||
|
Reference in New Issue
Block a user