lint fixes

This commit is contained in:
Wyatt Johnson
2017-05-11 17:38:49 -06:00
parent 08e7a90d69
commit a65d045c65
9 changed files with 18 additions and 14 deletions
@@ -113,7 +113,7 @@ export class EditableCommentContent extends React.Component {
// should be disabled if user hasn't actually changed their
// original comment
return (comment.body !== originalBody) && ! editWindowExpired;
return (comment.body !== originalBody) && !editWindowExpired;
}}
saveComment={this.editComment}
bodyLabel={lang.t('editComment.bodyInputLabel')}