Files
immich/web/src/lib/actions/autogrow.ts
2024-05-23 12:56:48 -05:00

5 lines
177 B
TypeScript

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