Skip to content

Commit f4a0662

Browse files
committed
fix: Possible loop on datatable with server-side interaction quasarframework#1834
1 parent 4a43cc2 commit f4a0662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/table/table-pagination.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function fixPagination (p) {
1414
p.page = 1
1515
}
1616
if (p.rowsPerPage !== void 0 && p.rowsPerPage < 1) {
17-
p.rowsPerPage = 5
17+
p.rowsPerPage = 0
1818
}
1919
return p
2020
}

0 commit comments

Comments
 (0)