Fix duplicate hacktoberfest label
This commit is contained in:
parent
37f851b3b1
commit
45f98fa0f8
1 changed files with 5 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue