Skip to content

Commit

Permalink
fix: Fix empty react-admin reference field on big pages
Browse files Browse the repository at this point in the history
  • Loading branch information
nicgirault committed May 23, 2023
1 parent 880969d commit 95921a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/getList/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const getMany = <R>(
export const parseQuery = (query: any, filtersOption?: FiltersOption) => {
const { range, sort, filter } = query

const [from, to] = range ? JSON.parse(range) : [0, 100]
const [from, to] = range ? JSON.parse(range) : [0, 10000]

const { q, ...filters } = JSON.parse(filter || '{}')

Expand Down

0 comments on commit 95921a8

Please sign in to comment.