fix sorting

This commit is contained in:
slonkazoid 2024-08-01 00:52:29 +03:00
parent 757e7fb21a
commit 272b2b8d27
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM

View file

@ -9,7 +9,7 @@ function initialSort(source, target) {
let title = post.firstElementChild.innerText; let title = post.firstElementChild.innerText;
posts.push([title, post.cloneNode(true)]); posts.push([title, post.cloneNode(true)]);
} }
posts.sort(([a, _1], [b, _2]) => a.toLocaleLowerCase() > b.toLocaleLowerCase()); posts.sort(([a, _1], [b, _2]) => a.toLocaleLowerCase().localeCompare(b.toLocaleLowerCase()));
for (let [_, post] of posts) { for (let [_, post] of posts) {
target.appendChild(post); target.appendChild(post);
} }