mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-19 03:25:29 +00:00
Nother fix for comment box bug. #861
This commit is contained in:
parent
360e7aec42
commit
2e886ce4e6
4
ui/src/components/comment-form.tsx
vendored
4
ui/src/components/comment-form.tsx
vendored
@ -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
|
// If its a comment edit, only check that its from your user, and that its a
|
||||||
// text edit only
|
// 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.previewMode = false;
|
||||||
this.state.loading = false;
|
this.state.loading = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user