summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makima/frontend/src/components/mesh/TaskTree.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/makima/frontend/src/components/mesh/TaskTree.tsx b/makima/frontend/src/components/mesh/TaskTree.tsx
index 46ae78d..296d3c6 100644
--- a/makima/frontend/src/components/mesh/TaskTree.tsx
+++ b/makima/frontend/src/components/mesh/TaskTree.tsx
@@ -165,6 +165,16 @@ function TreeNode({ task, isSupervisorTask, onSelect, depth, fetchSubtasks }: Tr
P{task.priority}
</span>
)}
+
+ {/* Open in full page button */}
+ <a
+ href={`/tasks/${task.id}`}
+ onClick={(e) => e.stopPropagation()}
+ className="font-mono text-[10px] text-[#555] opacity-0 group-hover:opacity-100 hover:text-[#75aafc] transition-all"
+ title="Open task page"
+ >
+ ↗
+ </a>
</div>
{/* Children */}