fix: prevent rendering of hidden fields in EntityForm component

This commit is contained in:
dswbx
2025-09-20 14:51:30 +02:00
parent 50e9be833b
commit d1726b23f1

View File

@@ -121,6 +121,8 @@ export function EntityForm({
return custom; return custom;
} }
} }
if (field.isHidden(action)) return;
return ( return (
<EntityFormField <EntityFormField
field={field} field={field}