Skip to content

Commit 1557c80

Browse files
authored
Merge pull request #4311 from rushatgabhane/fix-3822
Reduce debounce time to 75ms when filtering search.
2 parents 0f1d2d5 + a85cf39 commit 1557c80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/SearchPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SearchPage extends Component {
6666

6767
this.selectReport = this.selectReport.bind(this);
6868
this.onChangeText = this.onChangeText.bind(this);
69-
this.debouncedUpdateOptions = _.debounce(this.updateOptions.bind(this), 300);
69+
this.debouncedUpdateOptions = _.debounce(this.updateOptions.bind(this), 75);
7070

7171
const {
7272
recentReports,

0 commit comments

Comments
 (0)