Skip to content

Commit

Permalink
fix naming for custom class
Browse files Browse the repository at this point in the history
  • Loading branch information
masc-be committed Dec 20, 2023
1 parent 4a862c3 commit 0efc1bf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="input-group{% if input_size %} {{ input_size }}{% endif %}">
{# prepend #}
{% if crispy_prepended_text %}
<span class="input-group-text {% if prepended_class %} {{ prepended_class }}{% endif %}">{{ crispy_prepended_text }}</span>
<span class="input-group-text {% if crispy_prepended_class %} {{ crispy_prepended_class }}{% endif %}">{{ crispy_prepended_text }}</span>
{% endif %}

{# input #}
Expand All @@ -33,7 +33,7 @@

{# append #}
{% if crispy_appended_text %}
<span class="input-group-text {% if appended_class %} {{ appended_class }}{% endif %}">{{ crispy_appended_text }}</span>
<span class="input-group-text {% if crispy_appended_class %} {{ crispy_appended_class }}{% endif %}">{{ crispy_appended_text }}</span>
{% endif %}
{% if error_text_inline %}
{% include 'bootstrap5/layout/field_errors.html' %}
Expand Down

0 comments on commit 0efc1bf

Please sign in to comment.