feat: chat input focus on new chat

This commit is contained in:
Timothy J. Baek 2024-02-27 19:56:52 -08:00
parent 1d4d1ddbea
commit 260a8b8b83
4 changed files with 16 additions and 8 deletions

View file

@ -293,6 +293,9 @@
};
onMount(() => {
const chatInput = document.getElementById('chat-textarea');
window.setTimeout(() => chatInput?.focus(), 0);
const dropZone = document.querySelector('body');
const onDragOver = (e) => {