forked from coracle/flotilla
Fix enter selecting an option when there is no term. Closes #84
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
let items: string[] = $state([])
|
||||
|
||||
const populateItems = throttle(300, term => {
|
||||
items = search(term).slice(0, 5)
|
||||
items = term ? search(term).slice(0, 5) : []
|
||||
})
|
||||
|
||||
const setIndex = (newIndex: number, block: any) => {
|
||||
|
||||
Reference in New Issue
Block a user