mirror-immich/web/src/lib/actions/autogrow.ts

8 lines
212 B
TypeScript

export const autoGrowHeight = (textarea: HTMLTextAreaElement, height = 'auto') => {
if (!textarea) {
return;
}
textarea.style.height = height;
textarea.style.height = `${textarea.scrollHeight}px`;
};