mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Merge pull request #1216 from RooVetGit/jm/fix-overflow
Fix long strings correctly in ChatRow
This commit is contained in:
commit
0c884f13ea
2 changed files with 9 additions and 2 deletions
5
.changeset/fluffy-apples-attack.md
Normal file
5
.changeset/fluffy-apples-attack.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Handle really long text in the ChatRow similar to TaskHeader
|
||||
|
|
@ -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={{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue