Enable trailing on the debounce in the TeamPicker (same as in UserPicker) #13425

This commit is contained in:
Johannes Schill 2018-10-08 11:50:08 +02:00
parent a29d80df4e
commit 52b329562d

View File

@ -33,7 +33,7 @@ export class TeamPicker extends Component<Props, State> {
this.debouncedSearch = debounce(this.search, 300, { this.debouncedSearch = debounce(this.search, 300, {
leading: true, leading: true,
trailing: false, trailing: true,
}); });
} }