From b6121fd6d7f55cef6ea9c80bc8f52191bc683513 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 1 Mar 2026 21:09:32 +0100 Subject: [PATCH] chore(dashboard): sort Reference nav pages alphabetically Co-Authored-By: Claude Sonnet 4.6 --- state-hub/dashboard/observablehq.config.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/state-hub/dashboard/observablehq.config.js b/state-hub/dashboard/observablehq.config.js index 69889a6..570bcf1 100644 --- a/state-hub/dashboard/observablehq.config.js +++ b/state-hub/dashboard/observablehq.config.js @@ -17,14 +17,14 @@ export default { name: "Reference", collapsible: true, pages: [ - { name: "Live Data", path: "/docs/live-data" }, - { name: "Workstreams", path: "/docs/workstreams" }, - { name: "Workstream Health", path: "/docs/workstream-health-index" }, - { name: "Decisions", path: "/docs/decisions" }, { name: "Decision Health", path: "/docs/decisions-kpi" }, + { name: "Decisions", path: "/docs/decisions" }, + { name: "Inter-Repo Communication", path: "/docs/inter-repo-communication" }, + { name: "Live Data", path: "/docs/live-data" }, { name: "Progress Log", path: "/docs/progress-log" }, { name: "SBOM", path: "/docs/sbom" }, - { name: "Inter-Repo Communication", path: "/docs/inter-repo-communication" }, + { name: "Workstream Health", path: "/docs/workstream-health-index" }, + { name: "Workstreams", path: "/docs/workstreams" }, ], }, ],