diff --git a/ui/src/components/Sidebar.tsx b/ui/src/components/Sidebar.tsx index 14272454..b8cea2ca 100644 --- a/ui/src/components/Sidebar.tsx +++ b/ui/src/components/Sidebar.tsx @@ -99,7 +99,7 @@ export function Sidebar() { - + diff --git a/ui/src/components/SidebarNavItem.tsx b/ui/src/components/SidebarNavItem.tsx index 18ba03f1..e0cd7f6f 100644 --- a/ui/src/components/SidebarNavItem.tsx +++ b/ui/src/components/SidebarNavItem.tsx @@ -11,6 +11,8 @@ interface SidebarNavItemProps { className?: string; badge?: number; badgeTone?: "default" | "danger"; + textBadge?: string; + textBadgeTone?: "default" | "amber"; alert?: boolean; liveCount?: number; } @@ -23,6 +25,8 @@ export function SidebarNavItem({ className, badge, badgeTone = "default", + textBadge, + textBadgeTone = "default", alert = false, liveCount, }: SidebarNavItemProps) { @@ -50,6 +54,18 @@ export function SidebarNavItem({ )} {label} + {textBadge && ( + + {textBadge} + + )} {liveCount != null && liveCount > 0 && ( diff --git a/ui/src/pages/Routines.tsx b/ui/src/pages/Routines.tsx index 2ca8a3f7..dcbdd1d6 100644 --- a/ui/src/pages/Routines.tsx +++ b/ui/src/pages/Routines.tsx @@ -229,7 +229,10 @@ export function Routines() { - Routines + + Routines + Beta + Recurring work definitions that materialize into auditable execution issues.
Recurring work definitions that materialize into auditable execution issues.