Show the prompt for image gen (#9505)

This commit is contained in:
Matt Rubens 2025-11-22 11:04:42 -05:00 committed by GitHub
parent 2ca9eac9e0
commit cdc72750e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1004,13 +1004,14 @@ export const ChatRowContent = ({
</div>
{message.type === "ask" && (
<div className="pl-6">
<CodeAccordian
path={tool.path}
code={tool.content}
language="text"
isExpanded={isExpanded}
onToggleExpand={handleToggleExpand}
/>
<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>
</div>
</ToolUseBlock>
</div>
)}
</>