Skip to content

Commit

Permalink
Merge pull request #753 from bcgov/oleks
Browse files Browse the repository at this point in the history
Fixed: overuse of the paginator - search doesn't work in some cases
  • Loading branch information
ychung-mot authored Oct 28, 2024
2 parents ffcd514 + 4d3ae57 commit e17ce24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ export class AggregatedListingsTableComponent implements OnInit {
}

onSearch(): void {
this.getListings(0);
this.paginator.changePage(0);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export class ListingsTableComponent implements OnInit {
}

onSearch(): void {
this.getListings(0);
this.paginator.changePage(0);
}

Expand Down

0 comments on commit e17ce24

Please sign in to comment.