From cdb40ed942575d8f45c974ab338097ddf7033231 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Thu, 27 Mar 2025 11:08:40 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AD=EC=A0=9C=EB=90=9C=20=EB=8C=93?= =?UTF-8?q?=EA=B8=80=EC=9D=BC=EB=96=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/board/BoardProfile.vue | 2 +- src/views/board/BoardView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue index 00a4a87..560e758 100644 --- a/src/components/board/BoardProfile.vue +++ b/src/components/board/BoardProfile.vue @@ -33,7 +33,7 @@ - + diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index 7b4e57e..660d95f 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -336,7 +336,7 @@ createdAtRaw: comment.LOCCMTRDT, // 작성일 // createdAt: formattedDate(comment.LOCCMTRDT), // 작성일(노출용) // createdAtRaw: new Date(comment.LOCCMTUDT), // 수정순 - createdAt: formattedDate(comment.LOCCMTUDT) + (comment.LOCCMTUDT !== comment.LOCCMTRDT ? ' (수정됨)' : ''), // 수정일(노출용) + createdAt: formattedDate(comment.LOCCMTUDT) + (comment.content === '삭제된 댓글입니다' && comment.LOCCMTUDT !== comment.LOCCMTRDT ? ' (수정됨)' : ''), // 수정일(노출용) children: [], // 대댓글을 담을 배열 updateAtRaw: comment.LOCCMTUDT, }))