1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-10 13:56:47 +01:00
immich/web/src/lib/utils/autogrow.ts
martin 8f57bfb496
fix(web): small issues everywhere (#7207)
* multiple fix

* fix: album re-render

* fix: revert re-render album

* fix: linter

---------

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
2024-02-21 08:29:22 -05:00

4 lines
177 B
TypeScript

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