fix toDriver mutation convertion not respecting default values, react re-renders on navigation, mutator result logging

This commit is contained in:
dswbx
2025-06-14 08:06:05 +02:00
parent 8e1ecfcfe3
commit 6b3ac9e6e2
5 changed files with 27 additions and 11 deletions

View File

@@ -26,6 +26,10 @@ const searchSchema = s.partialObject({
const PER_PAGE_OPTIONS = [5, 10, 25, 50, 100];
export function DataEntityList({ params }) {
return <DataEntityListImpl params={params} key={params.entity} />;
}
function DataEntityListImpl({ params }) {
const { $data } = useBkndData();
const entity = $data.entity(params.entity as string);
if (!entity) {