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
The validations from my models are not backported to the Form.
After taking a look at the code it seems like the issues is coming from Mapping.from_representable_attrs(definitions) in the copy_validations_from method, definitions is always returning {} which prevent the mapping of the attributes in from_representable_attrs and prevent the method inverse_image to return any value.
Did I miss an element to set to make the validations work?
The text was updated successfully, but these errors were encountered:
Hi,
In my project, when using:
The validations from my models are not backported to the Form.
After taking a look at the code it seems like the issues is coming from
Mapping.from_representable_attrs(definitions)
in thecopy_validations_from
method, definitions is always returning{}
which prevent the mapping of the attributes infrom_representable_attrs
and prevent the methodinverse_image
to return any value.Did I miss an element to set to make the validations work?
The text was updated successfully, but these errors were encountered: