diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-03-25 14:10:40 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-03-29 09:44:59 +0100 |
commit | 1355d080cfa97eadfde70e6945e30f49a38ac28e (patch) | |
tree | 2e5b41f5898b00249f51bfd5b5267580c2e1b2ae /server/sonar-web/src/main/js/components/issue/IssueView.tsx | |
parent | a289d7ab1248e465064129dc0e4b8d858fee2b79 (diff) | |
download | sonarqube-1355d080cfa97eadfde70e6945e30f49a38ac28e.tar.gz sonarqube-1355d080cfa97eadfde70e6945e30f49a38ac28e.zip |
Update prettier to last version
* Prettier format all modules
Diffstat (limited to 'server/sonar-web/src/main/js/components/issue/IssueView.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/issue/IssueView.tsx | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/server/sonar-web/src/main/js/components/issue/IssueView.tsx b/server/sonar-web/src/main/js/components/issue/IssueView.tsx index 06d2eb4173d..f5cb65b0241 100644 --- a/server/sonar-web/src/main/js/components/issue/IssueView.tsx +++ b/server/sonar-web/src/main/js/components/issue/IssueView.tsx @@ -97,19 +97,18 @@ export default class IssueView extends React.PureComponent<Props> { onChange={this.props.onChange} togglePopup={this.props.togglePopup} /> - {issue.comments && - issue.comments.length > 0 && ( - <div className="issue-comments"> - {issue.comments.map(comment => ( - <IssueCommentLine - comment={comment} - key={comment.key} - onDelete={this.deleteComment} - onEdit={this.editComment} - /> - ))} - </div> - )} + {issue.comments && issue.comments.length > 0 && ( + <div className="issue-comments"> + {issue.comments.map(comment => ( + <IssueCommentLine + comment={comment} + key={comment.key} + onDelete={this.deleteComment} + onEdit={this.editComment} + /> + ))} + </div> + )} {hasCheckbox && ( <> <Checkbox |