From 52b329562dbdd0824f9c3043c16b3ed340096349 Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Mon, 8 Oct 2018 11:50:08 +0200 Subject: [PATCH] Enable trailing on the debounce in the TeamPicker (same as in UserPicker) #13425 --- public/app/core/components/Picker/TeamPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/Picker/TeamPicker.tsx b/public/app/core/components/Picker/TeamPicker.tsx index 1ced54ef305..002ef9242a9 100644 --- a/public/app/core/components/Picker/TeamPicker.tsx +++ b/public/app/core/components/Picker/TeamPicker.tsx @@ -33,7 +33,7 @@ export class TeamPicker extends Component { this.debouncedSearch = debounce(this.search, 300, { leading: true, - trailing: false, + trailing: true, }); }