Skip to content

Commit bd58cc0

Browse files
prevent empty lines
1 parent 2a28573 commit bd58cc0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

templates/vhost/_auth_oidc.erb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<% if @auth_oidc -%>
22
<% @oidc_settings.each do |key, value| %>
3-
<% if key == 'Scope' -%>
4-
OIDC<%= key %> "<%= value -%>"
5-
<% else -%>
6-
OIDC<%= key %> <%= value -%>
7-
<% end -%>
3+
OIDC<%= key %> <% if key == 'Scope' -%>"<%= value -%>"<% else -%><%= value -%><% end%>
84
<% end %>
95
<% end -%>

0 commit comments

Comments
 (0)