feat: better nav sorting

This commit is contained in:
Cory Dransfeldt 2024-07-14 19:35:10 -07:00
parent f5adf0ba06
commit 4b908fc3df
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.4.0", "version": "20.5.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.4.0", "version": "20.5.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.4.0", "version": "20.5.0",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -23,12 +23,12 @@ const fetchAllNavigation = async () => {
title: item.pages.title, title: item.pages.title,
permalink: item.pages.permalink, permalink: item.pages.permalink,
icon: item.icon, icon: item.icon,
position: item.position sort: item.sort
} : { } : {
title: item.title, title: item.title,
permalink: item.permalink, permalink: item.permalink,
icon: item.icon, icon: item.icon,
position: item.position sort: item.sort
} }
if (!menu[item.menu_location]) { if (!menu[item.menu_location]) {
@ -39,7 +39,7 @@ const fetchAllNavigation = async () => {
}) })
Object.keys(menu).forEach(location => { 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 return menu