mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
fix
This commit is contained in:
parent
3f7913b36f
commit
78272aed8d
@ -296,16 +296,6 @@
|
|||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
||||||
const submitPrompt = async (userPrompt, _user = null) => {
|
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 = [];
|
let _responses = [];
|
||||||
console.log('submitPrompt', $chatId);
|
console.log('submitPrompt', $chatId);
|
||||||
|
|
||||||
@ -329,8 +319,15 @@
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
// Reset chat message textarea height
|
// Reset chat input textarea
|
||||||
document.getElementById('chat-textarea').style.height = '';
|
const chatTextAreaElement = document.getElementById('chat-textarea');
|
||||||
|
|
||||||
|
if (chatTextAreaElement) {
|
||||||
|
chatTextAreaElement.value = '';
|
||||||
|
chatTextAreaElement.style.height = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt = '';
|
||||||
|
|
||||||
// Create user message
|
// Create user message
|
||||||
let userMessageId = uuidv4();
|
let userMessageId = uuidv4();
|
||||||
|
Loading…
Reference in New Issue
Block a user