Skip to content

Commit

Permalink
Merge pull request #7034 from krassowski/patch-2
Browse files Browse the repository at this point in the history
Increase the search debounce from 100ms to 500ms
  • Loading branch information
blink1073 committed Aug 16, 2019
2 parents 7d0b052 + 9867458 commit d927bd4
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 d927bd4

Please sign in to comment.