Skip to content

Commit 4707546

Browse files
Remove x character at end of help text (#173)
Errant 'x' char showing at end of text when help_text_inline is True
1 parent d8935f2 commit 4707546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crispy_tailwind/templates/tailwind/layout/help_text.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% if field.help_text %}
22
{% if help_text_inline %}
3-
<p {% if field.id_for_label %}id="{{ field.id_for_label }}_helptext" {% endif %}class="text-gray-600">{{ field.help_text|safe }}</p>x
3+
<p {% if field.id_for_label %}id="{{ field.id_for_label }}_helptext" {% endif %}class="text-gray-600">{{ field.help_text|safe }}</p>
44
{% else %}
55
<small {% if field.id_for_label %}id="{{ field.id_for_label }}_helptext" {% endif %}class="text-gray-600">{{ field.help_text|safe }}</small>
66
{% endif %}

0 commit comments

Comments
 (0)