Skip to content

Commit

Permalink
Fix broken element ids
Browse files Browse the repository at this point in the history
  • Loading branch information
fbacall committed Oct 2, 2023
1 parent d271862 commit ac66bdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/about/us.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
</div>
<% when 'cite' %>
<%# CITE %>
<div id=key class="<%= next_about_block(@feature_count += 1) %>">
<div id="<%= key -%>" class="<%= next_about_block(@feature_count += 1) %>">
<h3><%== t "us.keys.#{key}" %></h3>
<blockquote>
<%== t "us.#{key}" %>
<blockquote>
</blockquote>
</div>
<% else %>
<%# OTHERS %>
<div id=key class="<%= next_about_block(@feature_count += 1) %>">
<div id="<%= key -%>" class="<%= next_about_block(@feature_count += 1) %>">
<h3><%== t "us.keys.#{key}" %></h3>
<%== t "us.#{key}" %>
</div>
Expand Down

0 comments on commit ac66bdb

Please sign in to comment.