Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
domdinicola committed Jan 31, 2025
1 parent 82ba77d commit 3fb66b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aurora/registration/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def _get_validator(owner):
def _get_field_details(flex_field: FlexFormField):
kwargs = flex_field.get_field_kwargs()
return {
"type": fqn(flex_field.field_type),
"type": fqn(flex_field.field_type) if flex_field.field_type else None,
"label": flex_field.label,
"name": flex_field.name,
"smart_attrs": kwargs["smart_attrs"],
Expand Down

0 comments on commit 3fb66b5

Please sign in to comment.