From f47a230b62c519f79e80d61a57e4cb6977d023cc Mon Sep 17 00:00:00 2001 From: Hein Date: Wed, 11 Feb 2026 15:24:24 +0200 Subject: [PATCH] fix(Gridler): refresh cells after data load --- src/Gridler/components/GridlerStore.tsx | 2 ++ .../components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/Gridler/components/GridlerStore.tsx b/src/Gridler/components/GridlerStore.tsx index 7e21612..08ce206 100644 --- a/src/Gridler/components/GridlerStore.tsx +++ b/src/Gridler/components/GridlerStore.tsx @@ -459,6 +459,8 @@ const { Provider, useStore: useGridlerStore } = createSyncStore { console.error('loadPage Error: ', page, e); diff --git a/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx b/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx index 3eb966e..c3c0eb7 100644 --- a/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx +++ b/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx @@ -290,6 +290,8 @@ function _GlidlerAPIAdaptorForGoLangv2(props: GlidlerAPIAdaptorForG onChange(buffers); } }); + + getState('refreshCells')?.(); }, [props.url, props.authtoken, props.filter, JSON.stringify(props.options), mounted, setState]); return <>;