We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12f0e42 + f7d59e0 commit 0c884f1Copy full SHA for 0c884f1
.changeset/fluffy-apples-attack.md
@@ -0,0 +1,5 @@
1
+---
2
+"roo-cline": patch
3
4
+
5
+Handle really long text in the ChatRow similar to TaskHeader
webview-ui/src/components/chat/ChatRow.tsx
@@ -617,8 +617,10 @@ export const ChatRowContent = ({
617
color: "var(--vscode-badge-foreground)",
618
borderRadius: "3px",
619
padding: "9px",
620
- whiteSpace: "pre-line",
621
- wordWrap: "break-word",
+ overflow: "hidden",
+ whiteSpace: "pre-wrap",
622
+ wordBreak: "break-word",
623
+ overflowWrap: "anywhere",
624
}}>
625
<div
626
style={{
0 commit comments