diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2017-02-22 09:32:55 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2017-02-23 18:32:24 +0100 |
commit | d26ecc872afbded64666a266529affdcbb0557ad (patch) | |
tree | 0bfbcfe49898cb8711ce81a858c2dd4c82d6c081 /server/sonar-web/src/main/js/apps/issues | |
parent | d47bf478c722a1dd4a3c57e235a4544df3ddc7c3 (diff) | |
download | sonarqube-d26ecc872afbded64666a266529affdcbb0557ad.tar.gz sonarqube-d26ecc872afbded64666a266529affdcbb0557ad.zip |
fix indentation
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/BulkChangeForm.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/BulkChangeForm.js b/server/sonar-web/src/main/js/apps/issues/BulkChangeForm.js index d531971ef52..d7d1a67ebf3 100644 --- a/server/sonar-web/src/main/js/apps/issues/BulkChangeForm.js +++ b/server/sonar-web/src/main/js/apps/issues/BulkChangeForm.js @@ -203,15 +203,15 @@ export default ModalForm.extend({ const issueKeys = this.issues.map(issue => issue.key); bulkChangeIssues(issueKeys, query).then( - () => { - this.destroy(); - this.options.onChange(); - }, - (e: Object) => { - this.enableForm(); - this.hideSpinner(); - e.response.json().then(r => this.showErrors(r.errors, r.warnings)); - } + () => { + this.destroy(); + this.options.onChange(); + }, + (e: Object) => { + this.enableForm(); + this.hideSpinner(); + e.response.json().then(r => this.showErrors(r.errors, r.warnings)); + } ); }, |