diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index 906d5cf..1d4a85c 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -4,7 +4,7 @@ :unknown="comment.author === '익명'" :isCommentAuthor="isCommentAuthor" :boardId="comment.boardId" - :profileName="comment.author" + :profileName="comment.nickname ? comment.nickname : comment.author" :date="comment.createdAt" :comment="comment" :profileImg="comment.profileImg" @@ -17,7 +17,7 @@ @updateReaction="handleUpdateReaction" /> -