mirror of
https://github.com/immich-app/immich.git
synced 2025-12-26 09:14:58 +03:00
5 lines
177 B
TypeScript
5 lines
177 B
TypeScript
export const autoGrowHeight = (textarea: HTMLTextAreaElement, height = 'auto') => {
|
|
textarea.style.height = height;
|
|
textarea.style.height = `${textarea.scrollHeight}px`;
|
|
};
|