Skip to content

Commit

Permalink
Remove space in div class name in filter form
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed Sep 19, 2024
1 parent c5dfce2 commit 8d039e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nav/web/templates/seeddb/_filter_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="row">
<div class="columns medium-8">
{% for field in filter_form %}
<div id="div_id_{{ field.name }}" class="ctrlHolder {% if field.errors %}error {% endif %}">
<div id="div_id_{{ field.name }}" class="ctrlHolder{% if field.errors %} error {% endif %}">
{{ field.label_tag }}
{{ field }}
{% for error in field.errors %}
Expand Down

0 comments on commit 8d039e0

Please sign in to comment.