summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-07-01 20:39:34 -0400
committerDessalines <tyhou13@gmx.com>2020-07-01 20:39:34 -0400
commitdb8753631c94f293a03abfe433abd76620a147ba (patch)
treecebb2473cae292df2ef1c2f00d7c2604b69133bd
parent52fcda96e141094ceef5c9dbc92d46879328b41f (diff)
parent2e886ce4e62e6788554d165cd7024e4618ea49a5 (diff)
Merge branch 'dev'
-rw-r--r--ui/src/components/comment-form.tsx4
1 files changed, 3 insertions, 1 deletions
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<CommentFormProps, CommentFormState> {
// 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;