From 3b45ae929e9bfbb121b29cca2869abd35223641f Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Thu, 3 Apr 2025 10:39:07 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/board/BoardList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index d07e117..2613414 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -63,7 +63,7 @@ > 공지 -
+
📌 {{ truncateTitle(notice.title) }} @@ -94,7 +94,7 @@ > {{ post.id }} -
+
{{ truncateTitle(post.title) }} [ {{ post.commentCount }} ] @@ -178,7 +178,7 @@ }; const truncateTitle = title => { - return title.length > 28 ? title.slice(0, 28) + '...' : title; + return title.length > 19 ? title.slice(0, 19) + '...' : title; }; // 로컬 스토리지 필터 저장