fix sort bug lol

pull/15/head
justcool393 2022-11-26 10:07:17 -06:00
parent e44746f0da
commit 3b32036d6e
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ function sort_table(n) {
items.sort((a, b) => a.attr > b.attr);
sortAscending[n] = false;
} else {
items.sort((a, b) => b.attr < a.attr);
items.sort((a, b) => a.attr < b.attr);
sortAscending[n] = true;
}