Skip to content

Commit

Permalink
[BI-1036] remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris T committed Aug 27, 2021
1 parent e105644 commit e77bc90
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/program/ProgramUsersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,6 @@ export default class ProgramUsersTable extends Vue {
const sort: SortField = sortField ? new SortField(sortField, sortOrder) : undefined;
ProgramUserService.getAll(this.activeProgram!.id!, paginationQuery, sort).then(([programUsers, metadata]) => {
if (this.paginationController.matchesCurrentRequest(metadata.pagination)){
console.log('here!');
console.log(programUsers);
this.users = programUsers;
this.usersPagination = metadata.pagination;
}
Expand Down

0 comments on commit e77bc90

Please sign in to comment.