Преглед изворни кода

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

Johannes Schill пре 7 година
родитељ
комит
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,
     });
   }