From e5a55910dac6bcb4f967da761ab72ada3cea2b48 Mon Sep 17 00:00:00 2001 From: kimdaae328 Date: Tue, 25 Feb 2025 13:57:47 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B5=EB=AA=85=EA=B2=8C=EC=8B=9C=EA=B8=80?= =?UTF-8?q?=20=EB=8C=93=EA=B8=80,=20=EB=8C=80=EB=8C=93=EA=B8=80=20?= =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/board/BoardCommentArea.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/board/BoardCommentArea.vue b/src/components/board/BoardCommentArea.vue index 0a95249..34f4a2e 100644 --- a/src/components/board/BoardCommentArea.vue +++ b/src/components/board/BoardCommentArea.vue @@ -93,7 +93,8 @@ function handleCommentSubmit() { emit('submitComment', { comment: comment.value, password: isCheck.value ? password.value : '', - isCheck: isCheck.value + isCheck: isCheck.value, + // authorId: isCheck.value ? null : currentUserId.value, // 익명 체크되면 ID null 처리 }); }