From 8384b577ef155f2bc196405caed1dc73729aa8bf Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Fri, 26 Jun 2015 22:08:34 -0400 Subject: [PATCH] Remove duplicate 'required: true' attribute --- app/views/admin/identities/_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"