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.
1 parent 2ca9eac commit cdc7275Copy full SHA for cdc7275
webview-ui/src/components/chat/ChatRow.tsx
@@ -1004,13 +1004,14 @@ export const ChatRowContent = ({
1004
</div>
1005
{message.type === "ask" && (
1006
<div className="pl-6">
1007
- <CodeAccordian
1008
- path={tool.path}
1009
- code={tool.content}
1010
- language="text"
1011
- isExpanded={isExpanded}
1012
- onToggleExpand={handleToggleExpand}
1013
- />
+ <ToolUseBlock>
+ <div className="p-2">
+ <div className="mb-2 break-words">{tool.content}</div>
+ <div className="flex items-center gap-1 text-xs text-vscode-descriptionForeground">
+ {tool.path}
+ </div>
1014
+ </ToolUseBlock>
1015
1016
)}
1017
</>
0 commit comments