Skip to content

Commit dc13325

Browse files
authored
Corrected AppImage list sorting (#3427)
The default sorting of the table containing all AppImages has been corrected. Previously, it had been case-sensitive.
1 parent cd75a16 commit dc13325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We currently have {{ site.pages | size }} [apps]({{ site.baseurl }}/apps/) in ou
1616
</tr>
1717
</thead>
1818
<tbody>
19-
{% assign sorted = site.pages | sort: 'title' %}
19+
{% assign sorted = site.pages | sort_natural: 'title' %}
2020
{% for post in sorted %}
2121
{% if post.layout == 'app' && post.published != 'false' %}
2222
<tr id="{{ post.url }}">

0 commit comments

Comments
 (0)