Built site for gh-pages

This commit is contained in:
Quarto GHA Workflow Runner
2024-07-02 17:18:43 +00:00
parent 43c266673d
commit 1ad995ba47
30 changed files with 821 additions and 528 deletions

View File

@@ -1275,7 +1275,11 @@ async function fuseSearch(query, fuse, fuseOptions) {
// If we don't have a subfuse and the query is long enough, go ahead
// and create a subfuse to use for subsequent queries
if (now - then > kFuseMaxWait && subSearchFuse === undefined) {
if (
now - then > kFuseMaxWait &&
subSearchFuse === undefined &&
resultsRaw.length < fuseOptions.limit
) {
subSearchTerm = query;
subSearchFuse = new window.Fuse([], kFuseIndexOptions);
resultsRaw.forEach((rr) => {