diff --git a/components/ideas/idea-row-actions.tsx b/components/ideas/idea-row-actions.tsx index 3ac7cc1..2b443a7 100644 --- a/components/ideas/idea-row-actions.tsx +++ b/components/ideas/idea-row-actions.tsx @@ -61,7 +61,6 @@ export function IdeaRowActions({ idea, isDemo, onArchive }: IdeaRowActionsProps) // ---- Grill Me ---- const grillBlockedReason = (() => { if (status === 'grilling' || status === 'planning') return 'Job loopt al' - if (status === 'planned') return 'Idee is gepland — open de PBI' if (!hasProductWithRepo) return 'Idee heeft een product met repo nodig' if (!workerOk) return 'Geen Claude-worker actief' return null @@ -125,35 +124,20 @@ export function IdeaRowActions({ idea, isDemo, onArchive }: IdeaRowActionsProps) }) } - // PLANNED-state: kortere variant met "Bekijk PBI"-link - if (status === 'planned' && idea.pbi && idea.product_id) { - return ( -
+ return ( +
+ {/* Bekijk PBI — alleen zichtbaar in PLANNED */} + {status === 'planned' && idea.pbi && idea.product_id && ( - -
- ) - } + )} - return ( -
{/* Grill Me */}