FIX: Increase search debounce time

Needs more time to tolerate other language keyboards to process and
translate typing to unicode characters
This commit is contained in:
Justin DiRose 2020-02-06 10:54:01 -06:00
parent 2084327a2f
commit 73931cfaab
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export default Ember.Component.extend({
debouncedSearch: debounce(function(term) {
this.onSearch(term);
}, 250),
}, 500),
actions: {
onSearchTermChange(term) {