mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-19 11:09:50 +00:00
Fix: maybe prevent unnecessary search suggestion calls
This commit is contained in:
parent
48e0a0e8ef
commit
191a95c55c
2 changed files with 2 additions and 1 deletions
|
@ -94,6 +94,7 @@ export default function Search({ options }) {
|
|||
if (
|
||||
options.showSearchSuggestions &&
|
||||
(selectedProvider.suggestionUrl || options.suggestionUrl) && // custom providers pass url via options
|
||||
query.trim().length > 0 &&
|
||||
query.trim() !== searchSuggestions[0]
|
||||
) {
|
||||
fetch(`/api/search/searchSuggestion?query=${encodeURIComponent(query)}&providerName=${selectedProvider.name}`, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue