Explorar o código

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

Johannes Schill %!s(int64=7) %!d(string=hai) anos
pai
achega
52b329562d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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,
     });
   }