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 d7ca5cb commit b616aa3Copy full SHA for b616aa3
frontend/src/components/chat/acp/blocks.tsx
@@ -673,7 +673,9 @@ export const ToolBodyBlock = (props: {
673
);
674
}
675
676
- if (content?.length && hasLocations) {
+ const noContent = !textContent || textContent.length === 0;
677
+ const noDiffs = !diffs || diffs.length === 0;
678
+ if (noContent && noDiffs && hasLocations) {
679
return (
680
<div className="flex flex-col gap-2 pr-2">
681
<span className="text-xs text-muted-foreground">
0 commit comments