mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-08 22:38:05 -05:00
This commit is contained in:
@@ -83,11 +83,11 @@ export function ChatInput({
|
||||
};
|
||||
|
||||
const handleSubmitMessage = () => {
|
||||
if (value || (textareaRef.current?.value && !value)) {
|
||||
onSubmit(value || textareaRef.current?.value || "");
|
||||
if (value) {
|
||||
onChange?.("");
|
||||
} else if (textareaRef.current) {
|
||||
const message = value || textareaRef.current?.value || "";
|
||||
if (message) {
|
||||
onSubmit(message);
|
||||
onChange?.("");
|
||||
if (textareaRef.current) {
|
||||
textareaRef.current.value = "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user