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:
parent
2084327a2f
commit
73931cfaab
|
@ -13,7 +13,7 @@ export default Ember.Component.extend({
|
||||||
|
|
||||||
debouncedSearch: debounce(function(term) {
|
debouncedSearch: debounce(function(term) {
|
||||||
this.onSearch(term);
|
this.onSearch(term);
|
||||||
}, 250),
|
}, 500),
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
onSearchTermChange(term) {
|
onSearchTermChange(term) {
|
||||||
|
|
Loading…
Reference in New Issue