- <% if @note_comments.length > 0 %>
- <div class='note-comments'>
- <ul class="list-unstyled">
- <% @note_comments.each do |comment| %>
- <li id="c<%= comment.id %>">
- <small class='text-body-secondary'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
- <div class="mx-2">
- <%= comment.body.to_html %>
- </div>
- </li>
- <% end %>
- </ul>
- </div>
+ <% @note_comments.each do |comment| %>
+ <article id="c<%= comment.id %>">
+ <small class='text-body-secondary'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
+ </article>