-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
602aeed
commit c4e66f6
Showing
4 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export const handleAutoResize = (e: React.ChangeEvent<HTMLTextAreaElement>) => { | ||
const textarea = e.target; | ||
|
||
// Reset height to auto to get the correct scrollHeight | ||
textarea.style.height = "auto"; | ||
|
||
// Set the height to either the scrollHeight or the minimum height | ||
const newHeight = Math.max(textarea.scrollHeight, 36); // 36px is your current minHeight | ||
textarea.style.height = `${newHeight}px`; | ||
}; |