From fe9fba3904b9cbebacd5e8eab6cab953fad86af5 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Tue, 25 Mar 2025 12:23:13 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8=20maxl?= =?UTF-8?q?ength=204=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/board/BoardComment.vue | 3 ++- src/components/board/BoardCommentArea.vue | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index 9147773..4a1466b 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -24,6 +24,7 @@ class="form-control" :value="password" autocomplete="new-password" + maxlength="4" placeholder="비밀번호 입력" @input="filterInput" /> @@ -119,7 +120,7 @@ }); const displayName = computed(() => { - return props.nickname? props.nickname: props.comment.author; + return props.nickname ? props.nickname : props.comment.author; }); // emits 정의 diff --git a/src/components/board/BoardCommentArea.vue b/src/components/board/BoardCommentArea.vue index 84783bd..57f65ec 100644 --- a/src/components/board/BoardCommentArea.vue +++ b/src/components/board/BoardCommentArea.vue @@ -43,7 +43,7 @@ @input="clearAlert('nickname')" /> -
+
{{ nicknameAlert }}
@@ -57,7 +57,11 @@ autocomplete="new-password" v-model="password" placeholder="비밀번호" - @input="clearAlert('password')" + maxlength="4" + @input=" + password = password.replace(/\s/g, ''); + clearAlert('password'); + " />
@@ -145,6 +149,7 @@ if (!$common.isNotEmpty(password.value)) { passwordAlert2.value = '비밀번호를 입력해주세요.'; + password.value = ''; isValid = false; } else { passwordAlert2.value = ''; From e6e20624744f77e2afcde71ddaec6dcef8276bf4 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Tue, 25 Mar 2025 12:27:37 +0900 Subject: [PATCH 2/5] =?UTF-8?q?=EC=88=98=EC=A0=95=20=EC=8B=9C=20=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=EC=9C=BC=EB=A1=9C=20=EC=9D=B4=EB=8F=99=EC=97=90?= =?UTF-8?q?=EC=84=9C=20>=20=EC=83=81=EC=84=B8=EB=A1=9C=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/board/BoardEdit.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/board/BoardEdit.vue b/src/views/board/BoardEdit.vue index ca83d6e..9cd81a0 100644 --- a/src/views/board/BoardEdit.vue +++ b/src/views/board/BoardEdit.vue @@ -166,7 +166,8 @@ // 목록 페이지로 이동 const goList = () => { accessStore.$reset(); - router.push('/board'); + //router.push('/board'); + router.back(); }; // 전 페이지로 이동 From b7026afcbdd3ffb00a10486bce305aeb14190367 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Tue, 25 Mar 2025 12:43:45 +0900 Subject: [PATCH 3/5] =?UTF-8?q?=EC=9D=B5=EB=AA=85=20=EB=8C=93=EA=B8=80=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20=ED=95=A0=20=EB=95=8C=20=EC=82=AD=EC=A0=9C?= =?UTF-8?q?=20=EB=B2=84=ED=8A=BC=20=EB=91=90=20=EB=B2=88=20=EB=88=8C?= =?UTF-8?q?=EB=9F=AC=EC=95=BC=EC=A7=80=20input=EB=82=98=EC=98=B4=20>>=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/board/BoardView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index a202b57..afa527d 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -562,6 +562,7 @@ if (comment.isEditTextarea) { comment.isEditTextarea = false; comment.isCommentPassword = true; + toggleCommentPassword(comment, 'delete'); } else { toggleCommentPassword(comment, 'delete'); } From e393574ae62c9b2f1689f2cac16b716a33ec8d7a Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Tue, 25 Mar 2025 12:55:15 +0900 Subject: [PATCH 4/5] =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EC=9E=91=EC=84=B1=20?= =?UTF-8?q?=EC=8B=9C=20=EC=A4=84=EB=B0=94=EA=BF=88=20=ED=95=98=EA=B3=A0=20?= =?UTF-8?q?=EA=B8=80=20=EC=93=B0=EB=A9=B4=20=EB=B0=98=EC=98=81=EC=9D=B4=20?= =?UTF-8?q?=EC=95=88=EB=90=8C=20>>=20=EB=B0=98=EC=98=81=EB=90=98=EC=84=9C?= =?UTF-8?q?=20=EB=8C=93=EA=B8=80=20=EB=82=98=EC=98=A4=EA=B2=8C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/board/BoardComment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index 4a1466b..2a6a469 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -43,7 +43,7 @@
From 4abb705a39099fcc6e227883adec2aa6a4ecd84e Mon Sep 17 00:00:00 2001 From: khj0414 Date: Tue, 25 Mar 2025 15:03:09 +0900 Subject: [PATCH 5/5] =?UTF-8?q?=EC=B9=B4=EB=93=9C=20=ED=81=AC=EA=B8=B0=20?= =?UTF-8?q?=EC=A1=B0=EC=A0=95=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wordDict/wordDict.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/wordDict/wordDict.vue b/src/views/wordDict/wordDict.vue index 292cf0b..fada88a 100644 --- a/src/views/wordDict/wordDict.vue +++ b/src/views/wordDict/wordDict.vue @@ -31,6 +31,7 @@