* multiple fix * fix: album re-render * fix: revert re-render album * fix: linter --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
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`;
|
|
};
|