mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Enable trailing on the debounce in the TeamPicker (same as in UserPicker) #13425
This commit is contained in:
parent
a29d80df4e
commit
52b329562d
@ -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,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user