Skip to content

Commit deff9ee

Browse files
authored
Merge pull request #575 from johanbook/comment-form-multiline
fix(web-ui): make comment form multiline
2 parents 8ab6a98 + 78f3789 commit deff9ee

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

services/web-ui/src/pages/BlogPostListPage/components/BlogPostCommentForm/BlogPostComment.form.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export function BlogPostCommentForm({
7979
</InputAdornment>
8080
),
8181
}}
82+
multiline
8283
onChange={(event) => form.setValue({ content: event.target.value })}
8384
placeholder={t("comments.placeholder") || ""}
8485
value={form.state.content.value}

services/web-ui/src/pages/BlogPostPage/components/BlogPostCommentForm/BlogPostComment.form.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export function BlogPostCommentForm({
7979
</InputAdornment>
8080
),
8181
}}
82+
multiline
8283
onChange={(event) => form.setValue({ content: event.target.value })}
8384
placeholder={t("comments.placeholder") || ""}
8485
value={form.state.content.value}

0 commit comments

Comments
 (0)