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

This commit is contained in:
Johannes Schill
2018-10-10 14:15:26 +02:00
parent a29d80df4e
commit 52b329562d
@@ -33,7 +33,7 @@ export class TeamPicker extends Component<Props, State> {
this.debouncedSearch = debounce(this.search, 300, {
leading: true,
trailing: false,
trailing: true,
});
}