From 783ae29d01d221896f0a0063f83cc56ca54c09da Mon Sep 17 00:00:00 2001 From: levig Date: Sun, 5 Jul 2026 01:24:25 -0300 Subject: [PATCH 1/2] feat(phases): show phase description on graph node hover Add an SVG to each phase node so hovering over it reveals the phase description as a native browser tooltip, falling back to "No description" when empty. This does not interfere with clicking or dragging the graph. --- src/components/pages/phases/PhaseFlowGraph.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/pages/phases/PhaseFlowGraph.tsx b/src/components/pages/phases/PhaseFlowGraph.tsx index cad366e..f28c88b 100644 --- a/src/components/pages/phases/PhaseFlowGraph.tsx +++ b/src/components/pages/phases/PhaseFlowGraph.tsx @@ -351,6 +351,7 @@ export function PhaseFlowGraph({ onClick={(e) => handleNodeClick(phase.id, e)} style={{ transition: "opacity 0.2s" }} > + <title>{phase.description || "No description"} Date: Wed, 15 Jul 2026 17:01:29 -0300 Subject: [PATCH 2/2] chore(ci): empty commit to re-trigger CI checks Co-Authored-By: Claude Opus 4.8 (1M context)