mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-12 23:01:21 +00:00
feat(ui): add max height constraint to MCP execution response (#4644)
This commit is contained in:
parent
fc82485563
commit
8fb368dd6b
1 changed files with 2 additions and 2 deletions
|
|
@ -313,8 +313,8 @@ const ResponseContainerInternal = ({
|
|||
return (
|
||||
<div
|
||||
className={cn("overflow-hidden", {
|
||||
"max-h-[100%] mt-1 pt-1 border-t border-border/25": hasArguments,
|
||||
"max-h-[100%] mt-1 pt-1": !hasArguments,
|
||||
"max-h-96 overflow-y-auto mt-1 pt-1 border-t border-border/25": hasArguments,
|
||||
"max-h-96 overflow-y-auto mt-1 pt-1": !hasArguments,
|
||||
})}>
|
||||
{isJson ? (
|
||||
<CodeBlock source={response} language="json" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue