From c39540c7d8c785864bc6f85f9f7cde2d39193caf Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 30 Jul 2024 09:50:02 -0300 Subject: [PATCH] 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. --- src/frontend/src/components/ui/textarea.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/ui/textarea.tsx b/src/frontend/src/components/ui/textarea.tsx index 21b5c9e19..5f26719e0 100644 --- a/src/frontend/src/components/ui/textarea.tsx +++ b/src/frontend/src/components/ui/textarea.tsx @@ -10,7 +10,7 @@ export interface TextareaProps const Textarea = React.forwardRef( ({ className, password, editNode, ...props }, ref) => { return ( -
+