From acd591fb8e44089bf9471402be1f1e92524317ba Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 25 Feb 2026 13:29:16 -0600 Subject: [PATCH] Render Recommendation as nested sub-bullet under its Issue Recommendation lines are now displayed as an indented nested bullet beneath their parent Issue bullet, keeping them visually grouped together while giving each Recommendation its own bullet marker. Co-Authored-By: Claude Opus 4.6 --- frontend/components/FeedbackReport.tsx | 34 ++++++++++++++++---------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/frontend/components/FeedbackReport.tsx b/frontend/components/FeedbackReport.tsx index fea0a45..3fb2e3c 100755 --- a/frontend/components/FeedbackReport.tsx +++ b/frontend/components/FeedbackReport.tsx @@ -74,9 +74,6 @@ const formatFeedbackText = (text: string): React.ReactNode => { if (bulletGroups.length === 0) { // Haven't started bullets yet — it's intro text introLines.push(trimmed); - } else if (/^\*{0,2}Recommendation:/.test(trimmed)) { - // Recommendation line gets its own bullet - bulletGroups.push([trimmed]); } else { // Continuation line within the current bullet bulletGroups[bulletGroups.length - 1].push(trimmed); @@ -91,16 +88,27 @@ const formatFeedbackText = (text: string): React.ReactNode => { )} {bulletGroups.length > 0 && ( )}