Allow messages with images and no text

This commit is contained in:
Saoud Rizwan
2024-08-10 02:17:43 -04:00
parent 7da81f651d
commit 60ca8baecb
3 changed files with 10 additions and 12 deletions

View File

@@ -177,7 +177,7 @@ const ChatView = ({ messages, isHidden, vscodeThemeName, showAnnouncement, hideA
const handleSendMessage = () => {
const text = inputValue.trim()
if (text) {
if (text || selectedImages.length > 0) {
if (messages.length === 0) {
vscode.postMessage({ type: "newTask", text, images: selectedImages })
} else if (claudeAsk) {
@@ -598,7 +598,7 @@ const ChatView = ({ messages, isHidden, vscodeThemeName, showAnnouncement, hideA
appearance="icon"
aria-label="Send Message"
onClick={handleSendMessage}>
<span className="codicon codicon-send" style={{ marginBottom: -1 }}></span>
<span className="codicon codicon-send"></span>
</VSCodeButton>
</div>
</div>