Skip to content

Commit

Permalink
Fix the rows limit in the textarea input (#4798)
Browse files Browse the repository at this point in the history
fix: limit the rows of the textarea input
  • Loading branch information
Desvelao committed Nov 3, 2022
1 parent 35b797b commit 8163554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/components/common/form/input_text_area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const InputFormTextArea = ({ value, isInvalid, onChange, options } : IInp
value={value}
isInvalid={isInvalid}
onChange={onChange}
rows={options?.rowsSize}
rows={options?.maxRows}
/>
);
};

0 comments on commit 8163554

Please sign in to comment.