From a9542e9e08d2251bc0de2e214081f26abeb1a37d Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Mon, 18 May 2026 12:39:45 -0500 Subject: [PATCH 1/2] feat(thing/list): Increase export page size to 500 --- src/pages/ocotillo/thing/list.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/ocotillo/thing/list.tsx b/src/pages/ocotillo/thing/list.tsx index 67554f7b..e4b3f04c 100644 --- a/src/pages/ocotillo/thing/list.tsx +++ b/src/pages/ocotillo/thing/list.tsx @@ -102,6 +102,7 @@ export const WellList: React.FC = () => { const { triggerExport, isLoading: exportIsLoading } = useExport({ resource: 'thing', dataProviderName: 'ocotillo', + pageSize: 500, meta: { params: { thing_type: ['water well', 'geothermal well'], From a8062073bf41962e8962fefa7cb5b11bf5a5f4c3 Mon Sep 17 00:00:00 2001 From: Tyler Adam Martinez Date: Tue, 19 May 2026 08:28:48 -0500 Subject: [PATCH 2/2] fix(thing/list): Well list will have the same filters as the search --- src/pages/ocotillo/thing/list.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/ocotillo/thing/list.tsx b/src/pages/ocotillo/thing/list.tsx index e4b3f04c..cf92ed35 100644 --- a/src/pages/ocotillo/thing/list.tsx +++ b/src/pages/ocotillo/thing/list.tsx @@ -107,6 +107,7 @@ export const WellList: React.FC = () => { params: { thing_type: ['water well', 'geothermal well'], include_contacts: true, + ...(search ? { name_contains: search } : {}), }, }, })