File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
packages/manager/modules/exchange/src/group Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 11import angular from 'angular' ;
2- import debounce from 'lodash/debounce' ;
32
43export default class ExchangeTabGroupsCtrl {
54 /* @ngInject */
@@ -27,15 +26,14 @@ export default class ExchangeTabGroupsCtrl {
2726 $scope . $on ( 'showGroups' , ( ) => this . displayGroups ( ) ) ;
2827 $scope . $on ( 'showManagers' , ( ) => this . displayManagersByGroup ( ) ) ;
2928 $scope . $on ( 'showMembers' , ( ) => this . displayMembersByGroup ( ) ) ;
30- this . debouncedGetMailingLists = debounce ( this . getMailingLists , 300 ) ;
3129
3230 $scope . getLoading = ( ) => this . getLoading ( ) ;
3331 $scope . getMailingListObjects = ( ) => this . getMailingListObjects ( ) ;
3432 $scope . getMailingLists = ( count , offset ) => this . getMailingLists ( count , offset ) ;
3533 }
3634
3735 onSearchValueChange ( ) {
38- this . debouncedGetMailingLists ( ) ;
36+ this . getMailingLists ( ) ;
3937 }
4038
4139 displayGroups ( ) {
You can’t perform that action at this time.
0 commit comments