Skip to content

Commit

Permalink
adds costRangeSelector to remaining tables
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgnlez committed Nov 6, 2024
1 parent 9e5ab7a commit 4ab8875
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 @@ -68,6 +68,7 @@ export function KeyCostsTable() {
...(sorting.length > 0 && {
sort: sorting.map((sort) => `${sort.desc ? "" : "-"}${sort.id}`),
}),
costRangeSelector: filters.costRangeSelector,
pageNumber: pagination.pageIndex + 1,
pageSize: pagination.pageSize,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export function ScoredCardPrioritizationTable() {
...(sorting.length > 0 && {
sort: sorting.map((sort) => `${sort.desc ? "" : "-"}${sort.id}`),
}),
costRangeSelector: filters.costRangeSelector,
pageNumber: pagination.pageIndex + 1,
pageSize: pagination.pageSize,
},
Expand Down

0 comments on commit 4ab8875

Please sign in to comment.