Home: Set sort order same as Nav for home cards

This commit is contained in:
andyfreer 2020-03-18 21:43:16 +00:00
parent 773f92c809
commit fa0153288f

View file

@ -33,4 +33,4 @@ module.exports = fs.readdirSync(dir)
return file return file
}) })
.sort((a, b) => sortAbc(a.title, b.title)) .sort((a, b) => sortAbc(a.title, b.title))
.sort((a, b) => sortInv(a.weight, b.weight)) .sort((b, a) => sortInv(a.weight, b.weight))