We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37f851b commit 45f98faCopy full SHA for 45f98fa
contributing/open_issues.html
@@ -21,7 +21,11 @@
21
Sort by issue labels
22
<select>
23
{% for label in labels %}
24
- <option value='{{ label | downcase | replace: ' ', '-' }}'>{{ label | capitalize }}</option>
+ {% assign lowerlabel = label | downcase %}
25
+ {% assign ddlabels = ddlabels | push: lowerlabel | uniq %}
26
+ {% endfor %}
27
+ {% for label in ddlabels %}
28
+ <option value='{{ label | replace: ' ', '-' }}'>{{ label | capitalize }}</option>
29
{% endfor %}
30
31
</p>
0 commit comments