summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components/orders
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-17 13:04:18 +0000
committerGitHub <noreply@github.com>2026-02-17 13:04:18 +0000
commit049fd3e8a15952627954678838ca5382c11ecd04 (patch)
tree0e0c79185d358e508830802876f4ae87cd7c9507 /makima/frontend/src/components/orders
parentb67b3f8e8d63361d9ff19f87fd608c03bfa3fd43 (diff)
downloadsoryu-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/orders')
-rw-r--r--makima/frontend/src/components/orders/OrderDetail.tsx2
-rw-r--r--makima/frontend/src/components/orders/OrderList.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/makima/frontend/src/components/orders/OrderDetail.tsx b/makima/frontend/src/components/orders/OrderDetail.tsx
index 1b8d76e..9c3ac97 100644
--- a/makima/frontend/src/components/orders/OrderDetail.tsx
+++ b/makima/frontend/src/components/orders/OrderDetail.tsx
@@ -11,7 +11,7 @@ import type {
const STATUS_BADGE: Record<OrderStatus, { color: string; label: string }> = {
open: { color: "text-[#75aafc] border-[rgba(117,170,252,0.4)]", label: "OPEN" },
in_progress: { color: "text-yellow-400 border-yellow-800", label: "IN PROGRESS" },
- under_review: { color: "text-amber-400 border-amber-800", label: "UNDER REVIEW" },
+ under_review: { color: "bg-purple-400/20 text-purple-400 border-purple-800", label: "UNDER REVIEW" },
done: { color: "text-emerald-400 border-emerald-800", label: "DONE" },
archived: { color: "text-[#556677] border-[#2a3a5a]", label: "ARCHIVED" },
};
diff --git a/makima/frontend/src/components/orders/OrderList.tsx b/makima/frontend/src/components/orders/OrderList.tsx
index 3d63c54..0ebd18d 100644
--- a/makima/frontend/src/components/orders/OrderList.tsx
+++ b/makima/frontend/src/components/orders/OrderList.tsx
@@ -4,7 +4,7 @@ import type { Order, OrderStatus, OrderPriority, OrderType } from "../../lib/api
const STATUS_BADGE: Record<OrderStatus, { color: string; label: string }> = {
open: { color: "text-[#75aafc] border-[rgba(117,170,252,0.4)]", label: "OPEN" },
in_progress: { color: "text-yellow-400 border-yellow-800", label: "IN PROGRESS" },
- under_review: { color: "text-amber-400 border-amber-800", label: "REVIEW" },
+ under_review: { color: "text-purple-400 border-purple-800", label: "REVIEW" },
done: { color: "text-emerald-400 border-emerald-800", label: "DONE" },
archived: { color: "text-[#556677] border-[#2a3a5a]", label: "ARCHIVED" },
};