diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue
index 1b528c5..f5428dc 100644
--- a/src/views/board/BoardList.vue
+++ b/src/views/board/BoardList.vue
@@ -60,6 +60,7 @@
공지 |
📌 {{ notice.title }}
+
N
|
@@ -76,6 +77,7 @@
{{ post.id }} |
{{ post.title }}
+
N
|
@@ -190,7 +192,8 @@ const fetchGeneralPosts = async (page = 1) => {
author: post.author || '익명',
date: formatDate(post.date), // 날짜 변환 적용
views: post.cnt || 0,
- hasAttachment: post.hasAttachment || false
+ hasAttachment: post.hasAttachment || false,
+ img: post.firstImageUrl || null
}));
pagination.value = {
@@ -228,7 +231,8 @@ const fetchNoticePosts = async () => {
author: post.author || '관리자',
date: formatDate(post.date), // 날짜 변환 적용
views: post.cnt || 0,
- hasAttachment: post.hasAttachment || false
+ hasAttachment: post.hasAttachment || false,
+ img: post.firstImageUrl || null
}));
}
} catch (error) {