Skip to content

Commit 3a3c4a0

Browse files
authored
Fix: Filter out security patches from security page (#371)
1 parent fa1d18b commit 3a3c4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/security.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h3>Security tracker</h3>
3131
<th class="first_vuln">first vulnerable</th>
3232
<th class="first_fixed">first fixed</th>
3333
</tr>
34-
{% assign security_reverse = site.security | where_exp: "item", "item.name" | reverse %}
34+
{% assign security_reverse = site.security | where_exp: "item", "item.first_vulnerable" | reverse %}
3535
{% for security in security_reverse %}
3636
<tr class="{% cycle 'odd', 'even' %}">
3737
<td><a href="{{ site.baseurl }}{{ security.url }}">{{ security.name }}</td>

0 commit comments

Comments
 (0)