From 95921a8a1c4b24581f5b18b9ddf0633a90f1ec7c Mon Sep 17 00:00:00 2001 From: nicgirault Date: Tue, 23 May 2023 08:45:01 +0200 Subject: [PATCH] fix: Fix empty react-admin reference field on big pages --- src/getList/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/getList/index.ts b/src/getList/index.ts index 817434a..f8360ec 100644 --- a/src/getList/index.ts +++ b/src/getList/index.ts @@ -58,7 +58,7 @@ export const getMany = ( 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 || '{}')