mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: remove nested scrolling for expanded thinking sections
This commit is contained in:
parent
611bb70166
commit
5b8ecae80c
1 changed files with 2 additions and 1 deletions
|
|
@ -68,7 +68,8 @@ export const ReasoningBlock = ({ content, isStreaming, isLast }: ReasoningBlockP
|
|||
{(content?.trim()?.length ?? 0) > 0 && !isCollapsed && (
|
||||
<div
|
||||
ref={contentRef}
|
||||
className="border-l border-vscode-descriptionForeground/20 ml-2 pl-4 pb-1 text-vscode-descriptionForeground">
|
||||
className="border-l border-vscode-descriptionForeground/20 ml-2 pl-4 pb-1 text-vscode-descriptionForeground"
|
||||
style={{ maxHeight: "none", overflow: "visible" }}>
|
||||
<MarkdownBlock markdown={content} />
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue