Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-06-27 05:08:34 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-27 05:08:34 +0300
commit8384b577ef155f2bc196405caed1dc73729aa8bf (patch)
tree1b295b9e5279a271fca866a4e85ac8f53a97454e /app
parentf6503f71f994c50f12abfb29233259816006391a (diff)
Remove duplicate 'required: true' attribute
Diffstat (limited to 'app')
-rw-r--r--app/views/admin/identities/_form.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/identities/_form.html.haml b/app/views/admin/identities/_form.html.haml
index b405aa6e8e3..0525552ebf8 100644
--- a/app/views/admin/identities/_form.html.haml
+++ b/app/views/admin/identities/_form.html.haml
@@ -12,7 +12,7 @@
.form-group
= f.label :extern_uid, "Identifier", class: 'control-label'
.col-sm-10
- = f.text_field :extern_uid, required: true, class: 'form-control', required: true
+ = f.text_field :extern_uid, class: 'form-control', required: true
.form-actions
= f.submit 'Save changes', class: "btn btn-save"