From 94d45bc824f14c94e320e48f1677529fd5665490 Mon Sep 17 00:00:00 2001 From: levig Date: Sun, 5 Jul 2026 01:22:14 -0300 Subject: [PATCH 1/2] feat(phases): show the phase description in the dependency dialog Display the selected phase's description (read-only) above its dependency list, with a subtle "No description" placeholder when empty, so users get full context without opening the edit dialog. --- src/components/pages/phases/DependencyPanel.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/pages/phases/DependencyPanel.tsx b/src/components/pages/phases/DependencyPanel.tsx index c231a38..26d43c4 100644 --- a/src/components/pages/phases/DependencyPanel.tsx +++ b/src/components/pages/phases/DependencyPanel.tsx @@ -31,6 +31,14 @@ export function DependencyPanel({ return (
+ {selectedPhase.description ? ( +

+ {selectedPhase.description} +

+ ) : ( +

No description

+ )} +

Dependencies

From d000ec52a91df99d6a318d3c6b3c4f668fa282bc Mon Sep 17 00:00:00 2001 From: Levi Gomes Date: Wed, 15 Jul 2026 17:01:33 -0300 Subject: [PATCH 2/2] chore(ci): empty commit to re-trigger CI checks Co-Authored-By: Claude Opus 4.8 (1M context)