Merge pull request #1216 from RooVetGit/jm/fix-overflow

Fix long strings correctly in ChatRow
This commit is contained in:
Chris Estreich 2025-02-26 09:46:56 -08:00 committed by GitHub
commit 0c884f13ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
"roo-cline": patch
---
Handle really long text in the ChatRow similar to TaskHeader

View file

@ -617,8 +617,10 @@ export const ChatRowContent = ({
color: "var(--vscode-badge-foreground)",
borderRadius: "3px",
padding: "9px",
whiteSpace: "pre-line",
wordWrap: "break-word",
overflow: "hidden",
whiteSpace: "pre-wrap",
wordBreak: "break-word",
overflowWrap: "anywhere",
}}>
<div
style={{