From 0ecf43660ee8d991fc263a0079b7d2374d7c602e Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Sat, 22 Nov 2025 10:30:25 -0500 Subject: [PATCH 1/2] Show the prompt for image gen --- webview-ui/src/components/chat/ChatRow.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/webview-ui/src/components/chat/ChatRow.tsx b/webview-ui/src/components/chat/ChatRow.tsx index f2b1dc0872..c848f14316 100644 --- a/webview-ui/src/components/chat/ChatRow.tsx +++ b/webview-ui/src/components/chat/ChatRow.tsx @@ -1004,13 +1004,10 @@ export const ChatRowContent = ({ {message.type === "ask" && (
- +
+
{tool.content}
+
{tool.path}
+
)} From 2681d69a5662dc69bb7d2bc87ec3ed81150fabfd Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Sat, 22 Nov 2025 10:58:29 -0500 Subject: [PATCH 2/2] PR feedback --- webview-ui/src/components/chat/ChatRow.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webview-ui/src/components/chat/ChatRow.tsx b/webview-ui/src/components/chat/ChatRow.tsx index c848f14316..6479b5a581 100644 --- a/webview-ui/src/components/chat/ChatRow.tsx +++ b/webview-ui/src/components/chat/ChatRow.tsx @@ -1004,10 +1004,14 @@ export const ChatRowContent = ({ {message.type === "ask" && (
-
-
{tool.content}
-
{tool.path}
-
+ +
+
{tool.content}
+
+ {tool.path} +
+
+
)}