fix: Update Textarea component to have full height (#3069)

feat: Update Textarea component to have full height

The Textarea component was updated to have a full height by adding the "h-full" class to the parent div. This ensures that the textarea takes up the entire available vertical space.
This commit is contained in:
anovazzi1 2024-07-30 09:50:02 -03:00 committed by GitHub
commit c39540c7d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ export interface TextareaProps
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
({ className, password, editNode, ...props }, ref) => {
return (
<div className="w-full">
<div className="h-full w-full">
<textarea
className={cn(
"nopan nodelete nodrag noflow textarea-primary",