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/CreationModal.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/CreationModal.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js b/server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js index dd20358900d..9547362ecd5 100644 --- a/server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js +++ b/server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js @@ -24,19 +24,16 @@ import { parseError } from '../../../code/utils'; export default ModalForm.extend({ template: Template, - onFormSubmit () { + onFormSubmit() { ModalForm.prototype.onFormSubmit.apply(this, arguments); this.disableForm(); const name = this.$('#create-link-name').val(); const url = this.$('#create-link-url').val(); - this.options.onCreate(name, url) - .then(() => this.destroy()) - .catch(e => { - parseError(e).then(msg => this.showSingleError(msg)); - this.enableForm(); - }); + this.options.onCreate(name, url).then(() => this.destroy()).catch(e => { + parseError(e).then(msg => this.showSingleError(msg)); + this.enableForm(); + }); } }); - |