diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index 906d5cf..cff6256 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" diff --git a/src/components/board/BoardCommentArea.vue b/src/components/board/BoardCommentArea.vue index f8da317..1add6aa 100644 --- a/src/components/board/BoardCommentArea.vue +++ b/src/components/board/BoardCommentArea.vue @@ -3,35 +3,29 @@