diff options
author | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-03-17 09:10:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-17 09:10:48 +0100 |
commit | de4365079bad2df3bdee2133576dc913ffbf1ab2 (patch) | |
tree | a522ccb952f0d37f454e8188e13b3dec3f731912 /server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js | |
parent | 6a03df65cc0c91a26150ea172a2c480e07326ea1 (diff) | |
download | sonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.tar.gz sonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.zip |
format code using prettier (#1774)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js b/server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js index b58fc289f99..232857084c5 100644 --- a/server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js +++ b/server/sonar-web/src/main/js/apps/project-admin/links/views/DeletionModal.js @@ -25,23 +25,22 @@ import { parseError } from '../../../code/utils'; export default ModalForm.extend({ template: Template, - onFormSubmit () { + onFormSubmit() { ModalForm.prototype.onFormSubmit.apply(this, arguments); this.disableForm(); deleteLink(this.options.link.id) - .then(() => { - this.trigger('done'); - this.destroy(); - }) - .catch(e => { - parseError(e).then(msg => this.showSingleError(msg)); - this.enableForm(); - }); + .then(() => { + this.trigger('done'); + this.destroy(); + }) + .catch(e => { + parseError(e).then(msg => this.showSingleError(msg)); + this.enableForm(); + }); }, - serializeData () { + serializeData() { return { link: this.options.link }; } }); - |