Skip to content

Commit 9467d1a

Browse files
Joel Barmettlerdavwys
Joel Barmettler
andauthored
fix: Pagination in DataTable (#453)
* Fix pagination * rm gitkeep --------- Co-authored-by: davwys <[email protected]>
1 parent 515eb6f commit 9467d1a

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

frontend/src/components/tables/.gitkeep

Whitespace-only changes.

frontend/src/components/tables/useDataTable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export function useDataTable(
182182
descending: paginationDescending,
183183
} = dataProps.pagination;
184184

185-
const paginationTake = rowsPerPage || 500;
185+
const paginationTake = paginationRowsPerPage || 500;
186186

187187
loading.value = true;
188188

0 commit comments

Comments
 (0)