${this.results.length > 0 ? this.results.map((result, index) => html`
this.selectResult(result)}
@mouseenter=${() => { this.highlightedIndex = index; this.callbacks.onRequestUpdate(); }}
>
${result.display_name}
${result.type}
`) : this.query.length >= this.minQueryLength && !this.isSearching ? html`
No results found
` : ''}