Skip to content

Commit

Permalink
Update logref.js
Browse files Browse the repository at this point in the history
  • Loading branch information
shysolocup authored Sep 26, 2024
1 parent aa9d51b commit 4b32de7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/logs/scripts/logref.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,10 @@ versionnames.forEach((vn, i) => {
stuff.unshift(versions[vn].header);

vsubs = vsubs.sort( (a, b) => {
console.log(a.header.localeCompare(b.header));
return a - b;
return a.header.localeCompare(b.header);
});

console.log(vsubs);

/*v = v.content.sort();
v = (config.reverseSort) ? v.reverse() : v;*/
Expand Down

0 comments on commit 4b32de7

Please sign in to comment.