summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components/directives/DirectiveDetail.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'makima/frontend/src/components/directives/DirectiveDetail.tsx')
-rw-r--r--makima/frontend/src/components/directives/DirectiveDetail.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/makima/frontend/src/components/directives/DirectiveDetail.tsx b/makima/frontend/src/components/directives/DirectiveDetail.tsx
index abd2c55..1340482 100644
--- a/makima/frontend/src/components/directives/DirectiveDetail.tsx
+++ b/makima/frontend/src/components/directives/DirectiveDetail.tsx
@@ -98,6 +98,22 @@ export function DirectiveDetail({
</div>
)}
+ {/* Orchestrator planning indicator */}
+ {directive.orchestratorTaskId && (
+ <div className="flex items-center gap-2 mb-2 px-2 py-1.5 bg-[#1a1a30] border border-[rgba(117,170,252,0.2)] rounded">
+ <span className="inline-block w-2 h-2 rounded-full bg-[#75aafc] animate-pulse" />
+ <span className="text-[10px] font-mono text-[#75aafc]">
+ Planning in progress...
+ </span>
+ <a
+ href={`/mesh/${directive.orchestratorTaskId}`}
+ className="text-[9px] font-mono text-[#556677] hover:text-[#75aafc] underline ml-auto"
+ >
+ View task
+ </a>
+ </div>
+ )}
+
{/* Controls */}
<div className="flex flex-wrap gap-2">
{(directive.status === "draft" || directive.status === "paused") && (