Skip to content

Commit

Permalink
remove duplicate loadData func
Browse files Browse the repository at this point in the history
  • Loading branch information
rgmz committed Nov 22, 2024
1 parent b599c85 commit 5823e5e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions roadrecon/frontend/src/app/appmain/users/users.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,4 @@ export class UsersComponent implements AfterViewInit, OnInit {
}
).subscribe((data: UsersItem[]) => this.dataSource.data = data);
}

loadData() {
this.service.getUsers(this.paginator?.pageIndex, this.paginator?.pageSize, this.sort?.active, this.sort?.direction)
.subscribe((data: UsersItem[]) => this.dataSource.data = data);
}
}

0 comments on commit 5823e5e

Please sign in to comment.