From b9a280cfb21e7b88711198064692af636d793ba3 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Tue, 29 Jul 2025 23:44:28 -0400 Subject: [PATCH 1/2] Improved placeholder styling --- webview-ui/src/components/chat/ChatTextArea.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webview-ui/src/components/chat/ChatTextArea.tsx b/webview-ui/src/components/chat/ChatTextArea.tsx index 1b0ca2e963..a52902f1e5 100644 --- a/webview-ui/src/components/chat/ChatTextArea.tsx +++ b/webview-ui/src/components/chat/ChatTextArea.tsx @@ -1133,10 +1133,10 @@ const ChatTextArea = forwardRef( {!inputValue && !isEditMode && (
From 9fcd3011196797998a8712936556fbc8abbf42dd Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Tue, 29 Jul 2025 23:44:48 -0400 Subject: [PATCH 2/2] Allow queuing images --- webview-ui/src/components/chat/ChatView.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webview-ui/src/components/chat/ChatView.tsx b/webview-ui/src/components/chat/ChatView.tsx index c1ba4e65c9..46790b41ef 100644 --- a/webview-ui/src/components/chat/ChatView.tsx +++ b/webview-ui/src/components/chat/ChatView.tsx @@ -811,8 +811,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction vscode.postMessage({ type: "selectImages" }), []) - const shouldDisableImages = - !model?.supportsImages || sendingDisabled || selectedImages.length >= MAX_IMAGES_PER_MESSAGE + const shouldDisableImages = !model?.supportsImages || selectedImages.length >= MAX_IMAGES_PER_MESSAGE const handleMessage = useCallback( (e: MessageEvent) => {