Skip to content

Commit

Permalink
fix(browse chants): use short_heading in source filter dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
dchiller committed Dec 3, 2024
1 parent 4b310f9 commit e306886
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h3>Browse Chants</h3>
<select id="sourceFilter" name="source" class="form-control custom-select custom-select-sm">
{% comment %} <option value="">- Any -</option> {% endcomment %}
{% for source_obj in sources %}
<option value="{{ source_obj.id }}"{% if source_obj.id == source.id %} selected {% endif %}>{{ source_obj.siglum }}</option>
<option value="{{ source_obj.id }}"{% if source_obj.id == source.id %} selected {% endif %}>{{ source_obj.short_heading }}</option>
{% endfor %}
</select>
</div>
Expand Down

0 comments on commit e306886

Please sign in to comment.