Files
chatgpt-api-web/src/textarea.tsx
heimoshuiyu f0f040c42c
All checks were successful
Build static content / build (push) Successful in 10m51s
use @ import alias
2024-10-14 18:09:07 +08:00

10 lines
266 B
TypeScript

export const autoHeight = (target: any) => {
target.style.height = "auto";
// max 70% of screen height
target.style.height = `${Math.min(
target.scrollHeight,
window.innerHeight * 0.7,
)}px`;
console.log("set auto height", target.style.height);
};