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 <noreply@anthropic.com>
This commit is contained in:
parent
37f364ec0f
commit
dee0df57d8
2 changed files with 4 additions and 4 deletions
|
|
@ -636,7 +636,7 @@ const SubReviewCard: React.FC<{
|
|||
{issues.length === 0 && (!review.resolvedIssues || review.resolvedIssues.length === 0) && (
|
||||
<div className="flex items-center p-3 rounded-xl bg-emerald-50/50 border border-emerald-100 text-emerald-700 text-sm">
|
||||
<CheckCircleIcon className="h-5 w-5 mr-2" />
|
||||
<span className="font-semibold">No actionable issues found.</span>
|
||||
<span className="font-semibold">No key actions identified.</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
@ -645,7 +645,7 @@ const SubReviewCard: React.FC<{
|
|||
{/* Original mode: Show single list (backward compatible) */}
|
||||
{currentStatus !== 'Error' && !hasRevisionData(review) && issues.length > 0 && (
|
||||
<div className="bg-white/50 rounded-xl border border-slate-100 p-4">
|
||||
<h5 className={`text-xs font-bold uppercase tracking-wider mb-3 ${issueIconColor}`}>Actionable Issues</h5>
|
||||
<h5 className={`text-xs font-bold tracking-wider mb-3 ${issueIconColor}`}>Key Actions</h5>
|
||||
<ul className="space-y-3">
|
||||
{issues.map((issue, index) => (
|
||||
<li key={index} className="flex items-start gap-3 group/issue">
|
||||
|
|
@ -693,7 +693,7 @@ const SubReviewCard: React.FC<{
|
|||
{currentStatus !== 'Error' && !hasRevisionData(review) && issues.length === 0 && (
|
||||
<div className="flex items-center p-3 rounded-xl bg-emerald-50/50 border border-emerald-100 text-emerald-700 text-sm">
|
||||
<CheckCircleIcon className="h-5 w-5 mr-2" />
|
||||
<span className="font-semibold">No actionable issues found.</span>
|
||||
<span className="font-semibold">No key actions identified.</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ export const PDFReport: React.FC<PDFReportProps> = ({ campaignName, proofs }) =>
|
|||
<div style={{ fontSize: '13px', lineHeight: 1.5, margin: '0 0 10px 0', borderTop: '1px solid #eee', paddingTop: '10px' }}>{formatFeedbackTextForPDF(review.feedback)}</div>
|
||||
{review.issues && review.issues.length > 0 && (
|
||||
<div>
|
||||
<h5 style={{ fontSize: '13px', fontWeight: 'bold', margin: '0 0 5px 0' }}>Actionable Issues:</h5>
|
||||
<h5 style={{ fontSize: '13px', fontWeight: 'bold', margin: '0 0 5px 0' }}>Key Actions:</h5>
|
||||
<ul style={{ margin: 0, paddingLeft: '18px', fontSize: '12px', lineHeight: 1.5, listStyleType: 'disc' }}>
|
||||
{review.issues.map((issue, i) => <li key={i} style={{ marginBottom: '4px' }}>{issue}</li>)}
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue