Skip to content

Commit

Permalink
fix: Update Textarea component to have full height (langflow-ai#3069)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
anovazzi1 authored Jul 30, 2024
1 parent 747a184 commit c39540c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/components/ui/textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c39540c

Please sign in to comment.