게시판 삭제된 댓글 안보이게
This commit is contained in:
parent
0cfeb2fc1d
commit
5ae3d3bc75
@ -306,7 +306,8 @@ const fetchComments = async (page = 1) => {
|
||||
createdAtRaw: new Date(comment.LOCCMTRDT), // 정렬용
|
||||
createdAt: formattedDate(comment.LOCCMTRDT), // 표시용
|
||||
children: [], // 대댓글을 담을 배열
|
||||
updateAtRaw: new Date(comment.LOCCMTUDT),
|
||||
updateAtRaw: comment.LOCCMTUDT,
|
||||
|
||||
}));
|
||||
|
||||
commentsList.sort((a, b) => b.createdAtRaw - a.createdAtRaw);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user