diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-06-26 22:08:34 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-06-26 22:08:34 -0400 |
commit | 8384b577ef155f2bc196405caed1dc73729aa8bf (patch) | |
tree | 1b295b9e5279a271fca866a4e85ac8f53a97454e /app/views/admin | |
parent | f6503f71f994c50f12abfb29233259816006391a (diff) | |
download | gitlab-ce-8384b577ef155f2bc196405caed1dc73729aa8bf.tar.gz |
Remove duplicate 'required: true' attribute
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/identities/_form.html.haml | 2 |
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" |