aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js
diff options
context:
space:
mode:
authorStas Vilchik <stas-vilchik@users.noreply.github.com>2017-03-17 09:10:48 +0100
committerGitHub <noreply@github.com>2017-03-17 09:10:48 +0100
commitde4365079bad2df3bdee2133576dc913ffbf1ab2 (patch)
treea522ccb952f0d37f454e8188e13b3dec3f731912 /server/sonar-web/src/main/js/apps/project-admin/links/views/CreationModal.js
parent6a03df65cc0c91a26150ea172a2c480e07326ea1 (diff)
downloadsonarqube-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.js13
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();
+ });
}
});
-