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 ae0ae9d commit 48a6c0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/logs/scripts/logref.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,14 @@ groups.forEach((group, gi) => {

versionnames.forEach((vn, i) => {
if (versions[vn]) {
let v = versions[vn].content.sort();
let v = versions[vn].content

v = v.sort();
v = (config.reverseSort) ? v.reverse() : v;

v.unshift(versions[vn].header);

print(v);

content = content.concat(v);
}
Expand Down

0 comments on commit 48a6c0d

Please sign in to comment.