summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorBryce Johnson <bryce@gitlab.com>2016-09-29 11:58:43 +0200
committerBryce Johnson <bryce@gitlab.com>2016-10-15 08:28:53 +0200
commitc2766614ddc04b8df54fe8649d1dbe516f532987 (patch)
tree83fa10cc3acf478d026b60de04fa6d8005d3682d /app
parent445711675ca198660dcaee014cd4229b8eb266ab (diff)
downloadgitlab-ce-c2766614ddc04b8df54fe8649d1dbe516f532987.tar.gz
Fix syntax error -- missing comma in _new_crowd.
Diffstat (limited to 'app')
-rw-r--r--app/views/devise/sessions/_new_crowd.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/sessions/_new_crowd.html.haml b/app/views/devise/sessions/_new_crowd.html.haml
index 5a192c63c7c..e82a08cdb0c 100644
--- a/app/views/devise/sessions/_new_crowd.html.haml
+++ b/app/views/devise/sessions/_new_crowd.html.haml
@@ -1,4 +1,4 @@
-= form_tag(omniauth_authorize_path(:user, :crowd), id: 'new_crowd_user' class: 'show-gl-field-errors') do
+= form_tag(omniauth_authorize_path(:user, :crowd), id: 'new_crowd_user', class: 'show-gl-field-errors') do
.form-group
= label_tag 'Username or email', for: :username
= text_field_tag :username, nil, {class: "form-control top", title: "This field is required", autofocus: "autofocus", required: true }