From 2e886ce4e62e6788554d165cd7024e4618ea49a5 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 1 Jul 2020 20:38:11 -0400 Subject: Nother fix for comment box bug. #861 --- ui/src/components/comment-form.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ui/src/components/comment-form.tsx') diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx index 72a604b9..61ee3d77 100644 --- a/ui/src/components/comment-form.tsx +++ b/ui/src/components/comment-form.tsx @@ -263,7 +263,9 @@ export class CommentForm extends Component { // If its a comment edit, only check that its from your user, and that its a // text edit only - (op == UserOperation.EditComment && data.comment.content) + (data.comment.creator_id == UserService.Instance.user.id && + op == UserOperation.EditComment && + data.comment.content) ) { this.state.previewMode = false; this.state.loading = false; -- cgit v1.2.3