From 899e8a9edca5c3cc4a922489ebcc5b415364943f Mon Sep 17 00:00:00 2001 From: Sehoon Shon Date: Wed, 28 Jan 2026 10:13:25 -0500 Subject: [PATCH] /oncall dedup - wrap texts to nextlines (#17782) --- .../src/ui/components/triage/TriageDuplicates.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cli/src/ui/components/triage/TriageDuplicates.tsx b/packages/cli/src/ui/components/triage/TriageDuplicates.tsx index a6568c167c..724ce52546 100644 --- a/packages/cli/src/ui/components/triage/TriageDuplicates.tsx +++ b/packages/cli/src/ui/components/triage/TriageDuplicates.tsx @@ -822,7 +822,7 @@ Return a JSON object with: minHeight={Math.min(candLines.length, VISIBLE_LINES_DETAIL)} > {candViewLines.map((line: string, i: number) => ( - + {line} ))} @@ -881,7 +881,7 @@ Return a JSON object with: minHeight={Math.min(targetLines.length, visibleLines)} > {targetViewLines.map((line, i) => ( - + {line} ))} @@ -949,7 +949,7 @@ Return a JSON object with: ? 'blue' : undefined } - wrap="truncate-end" + wrap="wrap" > {absoluteIndex + 1}. #{c.number}{' '} @@ -963,7 +963,7 @@ Return a JSON object with: - {c.title} (Score: {c.score}/100) - + Reactions: {getReactionCount(c)} | {c.reason} @@ -997,14 +997,14 @@ Return a JSON object with: Analysis:{' '} - {state.message} + {state.message} {state.suggestedComment && ( Suggested Comment: - + "{state.suggestedComment}"