From d501ce0553a7a4082d6aba3196e2bea15457c0aa Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 6 Feb 2019 17:25:56 +0000 Subject: [PATCH] increase debouncing of filtering because its quite laggy atm --- src/components/structures/SearchBox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index 5792b2904c..fbcd9a7279 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -71,7 +71,7 @@ module.exports = React.createClass({ function() { this.props.onSearch(this.refs.search.value); }, - 100, + 500, ), _onKeyDown: function(ev) {