You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I update a transformer in the form but havent hit save yet. If i search for that updated transformer, it does not come up in the search until I click update on the form itself. I think this is related to the tanstack but that is currently documented in the code
Looks like we already have code for this, but there is this edge case.
// row.getValue doesn't work here due to a tanstack bug where the transformer value is out of sync with getValue
// row.original works here. There must be a caching bug with the transformer prop being an object.
// This may be related: https://github.com/TanStack/table/issues/5363
const rowVal = row.original.transformer;
const tsource = transformerHandler.getSystemTransformerBySource(
rowVal.source
);
const sourceName = tsource?.name.toLowerCase() ?? 'select transformer';
return sourceName.includes((value as string)?.toLowerCase());
We should revisit this once this tanstack issue is resolved.
I update a transformer in the form but havent hit save yet. If i search for that updated transformer, it does not come up in the search until I click update on the form itself. I think this is related to the tanstack but that is currently documented in the code
Looks like we already have code for this, but there is this edge case.
We should revisit this once this tanstack issue is resolved.
`getValue` cache not invalidating when `accessorFn` is updated · Issue #5363 · TanStack/table
From SyncLinear.com | NEOS-1455
The text was updated successfully, but these errors were encountered: