diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-23 16:41:33 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-30 20:48:17 -0300 |
commit | 9d655c9a4c910a9dc02eceb850d393832a105fba (patch) | |
tree | ed6b09230882ef7f014f80697f7b1c5d9124b16f /src/content/util | |
parent | 53483407a9f1f7fe20db6574fd4127d0c875e2ce (diff) |
content: generateChronologyLinks: sort most-to-least
Diffstat (limited to 'src/content/util')
-rw-r--r-- | src/content/util/getChronologyRelations.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/content/util/getChronologyRelations.js b/src/content/util/getChronologyRelations.js index 7a67c6f9..e4475ff8 100644 --- a/src/content/util/getChronologyRelations.js +++ b/src/content/util/getChronologyRelations.js @@ -45,6 +45,11 @@ export default function getChronologyRelations(thing, { artistLink: linkArtist(artist), previousLink: previous ? linkThing(previous) : null, nextLink: next ? linkThing(next) : null, + only: !(previous || next), }; - }).filter(Boolean); + }).filter(Boolean) + .sort((a, b) => + (a.only === b.only ? b.index - a.index + : a.only ? +1 + : -1)) } |