diff --git a/docs/assets/plugins/search/search.js b/docs/assets/plugins/search/search.js index a0a8d9927..097097cfc 100644 --- a/docs/assets/plugins/search/search.js +++ b/docs/assets/plugins/search/search.js @@ -221,7 +221,7 @@ await searchIndex; const hasQuery = query.length > 0; - const matches = hasQuery ? searchIndex.search(`${query}~1`) : []; + const matches = hasQuery ? searchIndex.search(`${query}~2`) : []; let hasResults = hasQuery && matches.length > 0; siteSearch.classList.toggle('site-search--has-results', hasQuery && hasResults);