Skip to content

Commit

Permalink
Merge pull request #334 from BCSDLab/hotfix/event-date-error
Browse files Browse the repository at this point in the history
Hotfix 이벤트 날짜 UI 수정
  • Loading branch information
hoooooony authored May 10, 2024
2 parents 33bdf5c + c8a451f commit e69d12b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function EventCard({
>
<EventContent html={event.content} />
</div>
<div className={styles.eventUpdatedAt}>{event.start_date.replace(/-/g, '.')}</div>
<div className={styles.eventUpdatedAt}>{`${event.start_date.replace(/-/g, '.')} - ${event.end_date.replace(/-/g, '.')}`}</div>
</div>
</div>
);
Expand Down

0 comments on commit e69d12b

Please sign in to comment.