Fix new Angular 7 issues
[oweals/peertube.git] / client / src / app / +admin / users / user-list / user-list.component.ts
index ab225072235711008699f1809e30d49de3f2d4fb..31e783622913fdf2b7e12f7e6d23b4bfc043e4f3 100644 (file)
@@ -23,7 +23,7 @@ export class UserListComponent extends RestTable implements OnInit {
   pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
 
   selectedUsers: User[] = []
-  bulkUserActions: DropdownAction<User>[] = []
+  bulkUserActions: DropdownAction<User[]>[] = []
 
   constructor (
     private notificationsService: NotificationsService,
@@ -66,7 +66,7 @@ export class UserListComponent extends RestTable implements OnInit {
     this.userBanModal.openModal(users)
   }
 
-  onUsersBanned () {
+  onUserChanged () {
     this.loadData()
   }