Skip to content

Commit

Permalink
fix: paginator distinct check (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbystedt committed Sep 11, 2024
1 parent 3d8f8c4 commit d22a8f1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ export class CollectionTableComponent
prev.sort &&
curr.sort &&
prev.sort.active === curr.sort.active &&
prev.sort.direction === curr.sort.direction
prev.sort.direction === curr.sort.direction &&
prev.page.index === curr.page.index &&
prev.page.size === curr.page.size
);
}),
switchMap((settings) => {
Expand Down

0 comments on commit d22a8f1

Please sign in to comment.