Skip to content

Commit

Permalink
Merge pull request #4311 from rushatgabhane/fix-3822
Browse files Browse the repository at this point in the history
Reduce debounce time to 75ms when filtering search.
  • Loading branch information
deetergp authored Jul 30, 2021
2 parents 0f1d2d5 + a85cf39 commit 1557c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/SearchPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SearchPage extends Component {

this.selectReport = this.selectReport.bind(this);
this.onChangeText = this.onChangeText.bind(this);
this.debouncedUpdateOptions = _.debounce(this.updateOptions.bind(this), 300);
this.debouncedUpdateOptions = _.debounce(this.updateOptions.bind(this), 75);

const {
recentReports,
Expand Down

0 comments on commit 1557c80

Please sign in to comment.