From dee0df57d88d85d92b9debcc50fcc47fdb62fdd9 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 19 Feb 2026 09:42:27 -0600 Subject: [PATCH] Rename "Actionable Issues" heading to "Key Actions" Replace the repetitive "Actionable Issues" label with the more constructive "Key Actions" in the feedback report and PDF export. Remove the uppercase CSS class so the heading renders in sentence case. Update empty-state text to "No key actions identified." Co-Authored-By: Claude Opus 4.6 --- frontend/components/FeedbackReport.tsx | 6 +++--- frontend/components/PDFReport.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/components/FeedbackReport.tsx b/frontend/components/FeedbackReport.tsx index ba35a26..d71ff2f 100755 --- a/frontend/components/FeedbackReport.tsx +++ b/frontend/components/FeedbackReport.tsx @@ -636,7 +636,7 @@ const SubReviewCard: React.FC<{ {issues.length === 0 && (!review.resolvedIssues || review.resolvedIssues.length === 0) && (
- No actionable issues found. + No key actions identified.
)} @@ -645,7 +645,7 @@ const SubReviewCard: React.FC<{ {/* Original mode: Show single list (backward compatible) */} {currentStatus !== 'Error' && !hasRevisionData(review) && issues.length > 0 && (
-
Actionable Issues
+
Key Actions
    {issues.map((issue, index) => (
  • @@ -693,7 +693,7 @@ const SubReviewCard: React.FC<{ {currentStatus !== 'Error' && !hasRevisionData(review) && issues.length === 0 && (
    - No actionable issues found. + No key actions identified.
    )}
diff --git a/frontend/components/PDFReport.tsx b/frontend/components/PDFReport.tsx index df8023f..4a2fc83 100755 --- a/frontend/components/PDFReport.tsx +++ b/frontend/components/PDFReport.tsx @@ -185,7 +185,7 @@ export const PDFReport: React.FC = ({ campaignName, proofs }) =>
{formatFeedbackTextForPDF(review.feedback)}
{review.issues && review.issues.length > 0 && (
-
Actionable Issues:
+
Key Actions:
    {review.issues.map((issue, i) =>
  • {issue}
  • )}