Skip to content

Commit 0edbca5

Browse files
committed
Summary: Fix bug in document type checkboxes
- Legacy-Id: 8993
1 parent 1d2883a commit 0edbca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/templates/doc/search/search_form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
{% for doc_type in form.doctypes %}
4545
<div class="checkbox">
4646
<label class="control-label" for="id_{{doc_type.slug}}">
47-
<input type="checkbox" class="advdoctype" {% if doc_type.slug in meta.checked %}checked{% endif %}name="include-{{doc_type.slug}}" id="id_{{doc_type.slug}}"/>{{doc_type|safe|capfirst_allcaps}}
47+
<input type="checkbox" class="advdoctype" {% if doc_type.slug in meta.checked %}checked{% endif %} name="include-{{doc_type.slug}}" id="id_{{doc_type.slug}}"/>{{doc_type|safe|capfirst_allcaps}}
4848
</label>
4949
</div>
5050
{% endfor %}

0 commit comments

Comments
 (0)