Skip to content

Commit

Permalink
Merge pull request #7035 from meeseeksmachine/auto-backport-of-pr-703…
Browse files Browse the repository at this point in the history
…4-on-1.0.x

Backport PR #7034 on branch 1.0.x (Increase the search debounce from 100ms to 500ms)
  • Loading branch information
blink1073 committed Aug 16, 2019
2 parents 6ef8d76 + bd5338e commit 8e57685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/documentsearch/src/searchoverlay.tsx
Expand Up @@ -417,7 +417,7 @@ class SearchOverlay extends React.Component<

private _debouncedStartSearch = new Debouncer(() => {
this._executeSearch(true, this.state.searchText);
}, 100);
}, 500);
}

export function createSearchOverlay(
Expand Down

0 comments on commit 8e57685

Please sign in to comment.