TdAI / llama.cpp /tools /ui /src /lib /utils /autoresize-textarea.ts
tda45's picture
Upload folder using huggingface_hub (part 8)
15c3607 verified
Raw
History Blame Contribute Delete
366 Bytes
/**
* Automatically resizes a textarea element to fit its content
* @param textareaElement - The textarea element to resize
*/
export default function autoResizeTextarea(textareaElement: HTMLTextAreaElement | null): void {
if (textareaElement) {
textareaElement.style.height = '1rem';
textareaElement.style.height = textareaElement.scrollHeight + 'px';
}
}