From b09be7c889fa76b437215d756e2813fcbf3bdaa1 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 30 Jul 2024 09:30:24 -0300 Subject: [PATCH 1/2] 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 21b5c9e1961..991f7bde540 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 ( -
+