Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Yanchenko committed Sep 30, 2020
1 parent f0bfe21 commit 3c84035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crispy_forms/templatetags/crispy_forms_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def render(self, context): # noqa: C901
if field.errors:
css_class += " form-control-danger"

if template_pack == "bootstrap4" and not is_multivalue(field):
if template_pack == "bootstrap4": # and not is_multivalue(field):
if not is_checkbox(field):
css_class += " form-control"
if is_file(field):
Expand Down

0 comments on commit 3c84035

Please sign in to comment.