We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756f4e7 commit e0d6111Copy full SHA for e0d6111
1 file changed
app/views/saml/complete.html.erb
@@ -5,13 +5,13 @@
5
<% if @attrs.any? %>
6
<table><thead><th>Name</th><th>Values</th></thead><tbody>
7
8
- <% @attrs.each_pair do |key,attr_value| %>
+ <% @attrs.each do |key,attr_value| %>
9
10
<tr><td><%= key %></td>
11
<td>
12
- <% if attr_value.values.any? %>
+ <% if attr_value.any? %>
13
<ul>
14
- <% attr_value.values.each do |val| %>
+ <% attr_value.each do |val| %>
15
<li><%= val %></li>
16
<% end %>
17
</ul>
0 commit comments