summaryrefslogtreecommitdiffstats
path: root/ui/src/components/comment-form.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-21 16:44:47 -0700
committerDessalines <tyhou13@gmx.com>2019-04-21 16:44:47 -0700
commitb80ec3fe96c364bd14a5149b2511a9ef4e46b12a (patch)
treed83e210fd930ae72c9eda7bed69f3a29df4d6df0 /ui/src/components/comment-form.tsx
parent8a57fd420ae596f9dfecc8cad46808c3e0800fe3 (diff)
Making chat / new comments section sticky top and fitting to your
viewport - Fixes #97. #98
Diffstat (limited to 'ui/src/components/comment-form.tsx')
-rw-r--r--ui/src/components/comment-form.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx
index df079ba3..1b4eda99 100644
--- a/ui/src/components/comment-form.tsx
+++ b/ui/src/components/comment-form.tsx
@@ -56,7 +56,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
<form onSubmit={linkEvent(this, this.handleCommentSubmit)}>
<div class="form-group row">
<div class="col-sm-12">
- <textarea class="form-control" value={this.state.commentForm.content} onInput={linkEvent(this, this.handleCommentContentChange)} placeholder="Comment here" required disabled={this.props.disabled}/>
+ <textarea class="form-control" value={this.state.commentForm.content} onInput={linkEvent(this, this.handleCommentContentChange)} required disabled={this.props.disabled} rows={2} />
</div>
</div>
<div class="row">