Skip to content

Commit 39e4778

Browse files
authored
Merge pull request #9392 from GilbertCherrie/fix_settings_authentication_form
Fix settings authentication form provider type ids
2 parents a4713cf + 7069802 commit 39e4778

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/views/ops/_settings_authentication_tab.html.haml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
%label
9393
%input{:type => 'radio',
9494
:name => 'provider_type',
95-
:id => 'provider_type_none',
95+
:id => 'provider_type',
9696
:value => 'none',
9797
"data-miq_observe" => {:url => url}.to_json,
9898
:checked => @edit[:new][:authentication][:provider_type] == "none"}
@@ -101,7 +101,7 @@
101101
%label
102102
%input{:type => 'radio',
103103
:name => 'provider_type',
104-
:id => 'provider_type_saml',
104+
:id => 'provider_type',
105105
:value => 'saml',
106106
"data-miq_observe" => {:url => url}.to_json,
107107
:checked => @edit[:new][:authentication][:provider_type] == "saml"}
@@ -110,7 +110,7 @@
110110
%label
111111
%input{:type => 'radio',
112112
:name => 'provider_type',
113-
:id => 'provider_type_oidc',
113+
:id => 'provider_type',
114114
:value => 'oidc',
115115
"data-miq_observe" => {:url => url}.to_json,
116116
:checked => @edit[:new][:authentication][:provider_type] == "oidc"}

0 commit comments

Comments
 (0)