From 6f9e7aee13b89ef2f09d646eeac0d5419b19edc6 Mon Sep 17 00:00:00 2001 From: deadvey Date: Thu, 9 Oct 2025 14:38:37 +0100 Subject: [PATCH] small change in comment ids --- views/partials/comment.ejs | 1 - views/posts/post.ejs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/views/partials/comment.ejs b/views/partials/comment.ejs index ab7793e..6bf1b1d 100644 --- a/views/partials/comment.ejs +++ b/views/partials/comment.ejs @@ -1,4 +1,3 @@ - <%= comment.name %> diff --git a/views/posts/post.ejs b/views/posts/post.ejs index efc45fc..4d4e6b0 100644 --- a/views/posts/post.ejs +++ b/views/posts/post.ejs @@ -43,7 +43,7 @@
<% comments.forEach((comment, index) => { %> -
+
<%- include('../partials/comment', {comment: comment}) %>
<% }) %>