Skip to content

Commit

Permalink
Backport PR jupyterlab#7034: Increase the search debounce from 100ms …
Browse files Browse the repository at this point in the history
…to 500ms
  • Loading branch information
blink1073 authored and MeeseeksDev[bot] committed Aug 16, 2019
1 parent 6ef8d76 commit bd5338e
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 bd5338e

Please sign in to comment.