From 70fb6527fea2ae95d76d96e0761dc015e12adeab Mon Sep 17 00:00:00 2001 From: caadiq Date: Mon, 1 Jun 2026 12:50:32 +0900 Subject: [PATCH] =?UTF-8?q?fix(event):=20=ED=95=99=EA=B5=90=20=EC=B6=95?= =?UTF-8?q?=EC=A0=9C=20=EC=83=81=EC=84=B8=20=EB=82=A0=EC=A7=9C=20=EC=98=86?= =?UTF-8?q?=20=EB=B0=B0=EC=A7=80=EB=A5=BC=20=ED=95=99=EA=B5=90=EB=AA=85=20?= =?UTF-8?q?=E2=86=92=20=EC=B6=95=EC=A0=9C=20=ED=83=80=EC=9E=85=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 학교명은 이미 제목에 포함되어 중복이므로 '대학 축제' 타입 표시로 변경. Co-Authored-By: Claude Opus 4.7 --- .../pages/mobile/schedule/ScheduleDetail.jsx | 16 +++++++--------- .../public/schedule/sections/EventSection.jsx | 18 ++++++++---------- 2 files changed, 15 insertions(+), 19 deletions(-) diff --git a/frontend/src/pages/mobile/schedule/ScheduleDetail.jsx b/frontend/src/pages/mobile/schedule/ScheduleDetail.jsx index 3b595fe..061a91c 100644 --- a/frontend/src/pages/mobile/schedule/ScheduleDetail.jsx +++ b/frontend/src/pages/mobile/schedule/ScheduleDetail.jsx @@ -612,15 +612,13 @@ function MobileEventSection({ schedule }) { {/* 정보 카드 */}
- {schedule.schoolName && ( - - - {schedule.schoolName} - - )} + + + {schedule.subtype === 'university' ? '대학 축제' : (schedule.category?.name || '행사')} + {formatFullDate(schedule.date)} {schedule.time && ` · ${formatTime(schedule.time)}`} diff --git a/frontend/src/pages/pc/public/schedule/sections/EventSection.jsx b/frontend/src/pages/pc/public/schedule/sections/EventSection.jsx index 96adc13..724ee05 100644 --- a/frontend/src/pages/pc/public/schedule/sections/EventSection.jsx +++ b/frontend/src/pages/pc/public/schedule/sections/EventSection.jsx @@ -97,17 +97,15 @@ function EventSection({ schedule }) { {/* 오른쪽: 정보 */}
- {/* 학교 + 날짜 */} + {/* 타입 + 날짜 */}
- {schedule.schoolName && ( - - - {schedule.schoolName} - - )} + + + {schedule.subtype === 'university' ? '대학 축제' : (schedule.category?.name || '행사')} + {formatFullDate(schedule.date)}