Skip to content

Commit

Permalink
Fixed the bug in the theme section when creating a dataset causing fo…
Browse files Browse the repository at this point in the history
…rm overflow
  • Loading branch information
jenom-kassim authored and EricSoroos committed May 20, 2024
1 parent 8d62a28 commit 68fb31d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
value=data[field.field_name],
error=errors[field.field_name],
classes=field.classes if 'classes' in field else ['control-medium'],
attrs=dict({"class": "form-control"}, **(field.get('form_attrs', {}))),
attrs=dict({"class": "form-control"}, **(field.get('form_attrs', {}))) if field.field_name != 'tag_string' else dict({"class": ""}, **(field.get('form_attrs', {}))),
is_required=h.scheming_field_required(field)
)
%}
Expand Down

0 comments on commit 68fb31d

Please sign in to comment.