summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/components/CommentInput/CommentInput.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/components/CommentInput/CommentInput.tsx')
-rw-r--r--webui/src/components/CommentInput/CommentInput.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/CommentInput/CommentInput.tsx b/webui/src/components/CommentInput/CommentInput.tsx
index 0fde1d95b..4d4c3b633 100644
--- a/webui/src/components/CommentInput/CommentInput.tsx
+++ b/webui/src/components/CommentInput/CommentInput.tsx
@@ -102,7 +102,7 @@ function CommentInput({ inputProps, inputText, loading, onChange }: Props) {
multiline
value={input}
variant="filled"
- rows="4" // TODO: rowsMin support
+ minRows={4}
onChange={(e: any) => setInput(e.target.value)}
disabled={loading}
/>