Przeglądaj źródła

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

Johannes Schill 7 lat temu
rodzic
commit
52b329562d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      public/app/core/components/Picker/TeamPicker.tsx

+ 1 - 1
public/app/core/components/Picker/TeamPicker.tsx

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