diff options
| author | soryu <soryu@soryu.co> | 2026-02-17 13:04:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-17 13:04:18 +0000 |
| commit | 049fd3e8a15952627954678838ca5382c11ecd04 (patch) | |
| tree | 0e0c79185d358e508830802876f4ae87cd7c9507 /makima/frontend/src/components/NavStrip.tsx | |
| parent | b67b3f8e8d63361d9ff19f87fd608c03bfa3fd43 (diff) | |
| download | soryu-049fd3e8a15952627954678838ca5382c11ecd04.tar.gz soryu-049fd3e8a15952627954678838ca5382c11ecd04.zip | |
feat: reorder nav, link orders to steps, improve PR titles (#68)
* feat: soryu-co/soryu: Reorder navigation: move Orders before Contracts
* feat: soryu-co/soryu: Generate PR titles from step content instead of directive title
* feat: soryu-co/soryu: Add orderId field to step creation and link orders to steps
* feat: soryu-co/soryu: Handle completed orders during plan-orders flow
Diffstat (limited to 'makima/frontend/src/components/NavStrip.tsx')
| -rw-r--r-- | makima/frontend/src/components/NavStrip.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makima/frontend/src/components/NavStrip.tsx b/makima/frontend/src/components/NavStrip.tsx index 5aba6a3..117f4e1 100644 --- a/makima/frontend/src/components/NavStrip.tsx +++ b/makima/frontend/src/components/NavStrip.tsx @@ -11,8 +11,8 @@ interface NavLink { const NAV_LINKS: NavLink[] = [ { label: "Listen", href: "/listen" }, { label: "Directives", href: "/directives", requiresAuth: true }, - { label: "Contracts", href: "/contracts", requiresAuth: true }, { label: "Orders", href: "/orders", requiresAuth: true }, + { label: "Contracts", href: "/contracts", requiresAuth: true }, { label: "Mesh", href: "/mesh", requiresAuth: true }, { label: "History", href: "/history", requiresAuth: true }, ]; |
