Просмотр исходного кода

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

Johannes Schill 7 лет назад
Родитель
Сommit
52b329562d
1 измененных файлов с 1 добавлено и 1 удалено
  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,
     });
   }