summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-03-03 09:01:54 +0100
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-03-03 09:01:54 +0100
commit28910ffddf348f98b470462a0b354234774bf4f5 (patch)
treef44e9e271fa75a2c1cda4b33d208b500f0e61668
parentba9bb4f59f0a8095350c433a303dc46c24bc34b1 (diff)
downloadgitlab-ce-28910ffddf348f98b470462a0b354234774bf4f5.tar.gz
Fix linter errors
-rw-r--r--app/assets/javascripts/dispatcher.js.es62
-rw-r--r--app/controllers/groups_controller.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/dispatcher.js.es6 b/app/assets/javascripts/dispatcher.js.es6
index 942b6e26670..71eb4c5d782 100644
--- a/app/assets/javascripts/dispatcher.js.es6
+++ b/app/assets/javascripts/dispatcher.js.es6
@@ -226,7 +226,7 @@ const UserCallout = require('./user_callout');
case 'admin:groups:new':
case 'groups:create':
case 'admin:groups:create':
- BindInOut.initAll();
+ BindInOut.initAll();
case 'groups:new':
case 'admin:groups:new':
case 'groups:edit':
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index 5a6ba3f2054..59b25b33e27 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -35,7 +35,7 @@ class GroupsController < Groups::ApplicationController
notice = if @group.chat_team.present?
"Group '#{@group.name}' and its Mattermost team were successfully created."
else
- "Group '#{@group.name}' was successfully created."
+ "Group '#{@group.name}' was successfully created."
end
redirect_to @group, notice: notice