small change in comment ids

This commit is contained in:
2025-10-09 14:38:37 +01:00
parent 23add8897b
commit 6f9e7aee13
2 changed files with 1 additions and 2 deletions

View File

@@ -1,4 +1,3 @@
<span id='comment-name'> <span id='comment-name'>
<b><%= comment.name %></b> <b><%= comment.name %></b>
</span> </span>

View File

@@ -43,7 +43,7 @@
<div id="post-comments"> <div id="post-comments">
<% comments.forEach((comment, index) => { %> <% comments.forEach((comment, index) => { %>
<div id="comment-no<%= comment.id %>" class="post-comment-<%= index %>"> <div id="comment" class="post-comment-<%= index %>">
<%- include('../partials/comment', {comment: comment}) %> <%- include('../partials/comment', {comment: comment}) %>
</div> </div>
<% }) %> <% }) %>