fix: polish VS Code chat actions and bash tool text

Hide multi-run action in VS Code chat
Remove rounded bash tool text surfaces
This commit is contained in:
Bohdan Triapitsyn
2026-04-30 14:19:20 +03:00
parent 8152bd7808
commit 57eec76a7b
2 changed files with 22 additions and 19 deletions
@@ -1714,7 +1714,7 @@ const ToolExpandedContent: React.FC<ToolExpandedContentProps> = React.memo(({
syntaxTheme={syntaxTheme}
/>,
{
className: 'p-1',
className: part.tool === 'bash' ? 'p-1 rounded-none' : 'p-1',
maxHeightClass: part.tool === 'bash' ? 'max-h-[46vh]' : undefined,
}
);
@@ -1757,7 +1757,7 @@ const ToolExpandedContent: React.FC<ToolExpandedContentProps> = React.memo(({
),
{
maxHeightClass: 'max-h-60',
className: part.tool === 'bash' ? 'tool-input-surface p-0' : 'tool-input-surface',
className: part.tool === 'bash' ? 'tool-input-surface p-0 rounded-none' : 'tool-input-surface',
}
)}
</div>