Skip to content

Commit 21bc397

Browse files
fix(command-center): use wrap-break-word for thinking traces pre block
- Replace deprecated break-words with wrap-break-word in AgentDetailsPanel
1 parent 98cae75 commit 21bc397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/CommandCenter/AgentDetailsPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export function AgentDetailsPanel({
185185
{isExpanded("thinking") && (
186186
<div className="px-6 pb-4">
187187
<div className="p-3 rounded-lg bg-white/50 dark:bg-jet/50 border border-warm-gray/10 dark:border-stone/10 max-h-80 overflow-y-auto">
188-
<pre className="text-xs text-stone font-mono whitespace-pre-wrap break-words">
188+
<pre className="text-xs text-stone font-mono whitespace-pre-wrap wrap-break-word">
189189
{agentState.lastResult.metadata.thinkingTraces as string}
190190
</pre>
191191
</div>

0 commit comments

Comments
 (0)