mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-24 13:35:07 +01:00
Debounce autosuggestions (#3836)
* Debounce autosuggestions * Remove duplicate import
This commit is contained in:
parent
05e4728de7
commit
aebebdc5d1
@ -74,9 +74,9 @@ class ComposeForm extends ImmutablePureComponent {
|
|||||||
this.props.onClearSuggestions();
|
this.props.onClearSuggestions();
|
||||||
}
|
}
|
||||||
|
|
||||||
onSuggestionsFetchRequested = (token) => {
|
onSuggestionsFetchRequested = debounce((token) => {
|
||||||
this.props.onFetchSuggestions(token);
|
this.props.onFetchSuggestions(token);
|
||||||
}
|
}, 500, { trailing: true })
|
||||||
|
|
||||||
onSuggestionSelected = (tokenStart, token, value) => {
|
onSuggestionSelected = (tokenStart, token, value) => {
|
||||||
this._restoreCaret = null;
|
this._restoreCaret = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user