summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-18 19:34:00 +0000
committersoryu <soryu@soryu.co>2026-01-18 19:34:00 +0000
commitd9c79622026240d27524580be590c076eca3c465 (patch)
tree3b69e1f085557f5fd790dd0f4cf990eb3c980c67
parentd5d3502a40ecc302bb21e91bccda8c8a4a7b6d6d (diff)
parentc7ff7dc2a6108acb13f5f983792d65c5073829a1 (diff)
downloadsoryu-makima/clean-up-mesh-page.tar.gz
soryu-makima/clean-up-mesh-page.zip
Merge: Add open task page button to TaskTreemakima/clean-up-mesh-page
-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 */}