feat: better nav sorting
This commit is contained in:
parent
f5adf0ba06
commit
4b908fc3df
3 changed files with 6 additions and 6 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "20.4.0",
|
||||
"version": "20.5.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "20.4.0",
|
||||
"version": "20.5.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "20.4.0",
|
||||
"version": "20.5.0",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -23,12 +23,12 @@ const fetchAllNavigation = async () => {
|
|||
title: item.pages.title,
|
||||
permalink: item.pages.permalink,
|
||||
icon: item.icon,
|
||||
position: item.position
|
||||
sort: item.sort
|
||||
} : {
|
||||
title: item.title,
|
||||
permalink: item.permalink,
|
||||
icon: item.icon,
|
||||
position: item.position
|
||||
sort: item.sort
|
||||
}
|
||||
|
||||
if (!menu[item.menu_location]) {
|
||||
|
@ -39,7 +39,7 @@ const fetchAllNavigation = async () => {
|
|||
})
|
||||
|
||||
Object.keys(menu).forEach(location => {
|
||||
menu[location].sort((a, b) => a.position - b.position)
|
||||
menu[location].sort((a, b) => a.sort - b.sort)
|
||||
})
|
||||
|
||||
return menu
|
||||
|
|
Reference in a new issue