This commit is contained in:
Timothy J. Baek 2024-06-09 17:20:23 -07:00
parent 3f7913b36f
commit 78272aed8d

View File

@ -296,16 +296,6 @@
//////////////////////////
const submitPrompt = async (userPrompt, _user = null) => {
// Reset chat input textarea
const chatTextAreaElement = document.getElementById('chat-textarea');
if (chatTextAreaElement) {
chatTextAreaElement.value = '';
chatTextAreaElement.style.height = '';
}
prompt = '';
let _responses = [];
console.log('submitPrompt', $chatId);
@ -329,8 +319,15 @@
)
);
} else {
// Reset chat message textarea height
document.getElementById('chat-textarea').style.height = '';
// Reset chat input textarea
const chatTextAreaElement = document.getElementById('chat-textarea');
if (chatTextAreaElement) {
chatTextAreaElement.value = '';
chatTextAreaElement.style.height = '';
}
prompt = '';
// Create user message
let userMessageId = uuidv4();