Fix duplicate hacktoberfest label

This commit is contained in:
Melissa LeBlanc-Williams 2022-10-06 12:34:38 -07:00
parent 37f851b3b1
commit 45f98fa0f8

View file

@ -21,7 +21,11 @@ permalink: /contributing/open-issues
Sort by issue labels Sort by issue labels
<select> <select>
{% for label in labels %} {% for label in labels %}
<option value='{{ label | downcase | replace: ' ', '-' }}'>{{ label | capitalize }}</option> {% assign lowerlabel = label | downcase %}
{% assign ddlabels = ddlabels | push: lowerlabel | uniq %}
{% endfor %}
{% for label in ddlabels %}
<option value='{{ label | replace: ' ', '-' }}'>{{ label | capitalize }}</option>
{% endfor %} {% endfor %}
<select> <select>
</p> </p>