summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/post.tsx')
-rw-r--r--ui/src/components/post.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 3ece6747..9f489466 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -130,8 +130,9 @@ export class Post extends Component<any, PostState> {
newComments() {
return (
- <div class="sticky-top">
- <h5>New Comments</h5>
+ <div class="container-fluid sticky-top new-comments">
+ <h5>Chat</h5>
+ <CommentForm postId={this.state.post.id} disabled={this.state.post.locked} />
{this.state.comments.map(comment =>
<CommentNodes
nodes={[{comment: comment}]}