diff options
Diffstat (limited to 'makima/frontend/src/components/orders/OrderList.tsx')
| -rw-r--r-- | makima/frontend/src/components/orders/OrderList.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/makima/frontend/src/components/orders/OrderList.tsx b/makima/frontend/src/components/orders/OrderList.tsx index 76ac7a7..1d279f7 100644 --- a/makima/frontend/src/components/orders/OrderList.tsx +++ b/makima/frontend/src/components/orders/OrderList.tsx @@ -57,7 +57,8 @@ export function OrderList({ (o) => o.title.toLowerCase().includes(q) || (o.description && o.description.toLowerCase().includes(q)) || - o.labels.some((l) => l.toLowerCase().includes(q)), + o.labels.some((l) => l.toLowerCase().includes(q)) || + (o.directiveName && o.directiveName.toLowerCase().includes(q)), ); }, [orders, search]); @@ -158,6 +159,11 @@ export function OrderList({ /> <span className="text-[12px] font-mono text-white truncate flex-1"> {o.title} + {o.directiveName && ( + <span className="text-[9px] font-mono text-[#556677] truncate block"> + {o.directiveName} + </span> + )} </span> </div> <div className="flex items-center gap-1.5 pl-4"> |
