From 15b6e5fba161a194fe5427d7d29b0c4286423260 Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 10 Feb 2026 14:50:07 +0000 Subject: Add auto-PR creation for remote repos in directives --- .../src/components/directives/DirectiveDetail.tsx | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'makima/frontend/src/components') diff --git a/makima/frontend/src/components/directives/DirectiveDetail.tsx b/makima/frontend/src/components/directives/DirectiveDetail.tsx index 1340482..616c5d2 100644 --- a/makima/frontend/src/components/directives/DirectiveDetail.tsx +++ b/makima/frontend/src/components/directives/DirectiveDetail.tsx @@ -114,6 +114,40 @@ export function DirectiveDetail({ )} + {/* PR link */} + {directive.prUrl && ( +
+ + + PR created + + + {directive.prUrl} + +
+ )} + + {/* Completion task indicator */} + {directive.completionTaskId && !directive.prUrl && ( +
+ + + Creating PR... + + + View task + +
+ )} + {/* Controls */}
{(directive.status === "draft" || directive.status === "paused") && ( -- cgit v1.2.3