공개페이지 수정

This commit is contained in:
2025-06-19 19:07:49 +09:00
parent 4ce6b4dd68
commit 9381d3fc0f
+2 -2
View File
@@ -50,11 +50,11 @@
<div v-if="event.location" class="info-row"> <div v-if="event.location" class="info-row">
<i class="pi pi-map-marker mr-1" /><strong>장소:</strong> {{ event.location }} <i class="pi pi-map-marker mr-1" /><strong>장소:</strong> {{ event.location }}
</div> </div>
<div v-if="event.participantFee" class="info-row"> <div v-if="event.participantFee > 0" class="info-row">
<i class="pi pi-credit-card mr-1" /><strong>참가비:</strong> {{ <i class="pi pi-credit-card mr-1" /><strong>참가비:</strong> {{
Number(event.participantFee).toLocaleString('ko-KR') }} Number(event.participantFee).toLocaleString('ko-KR') }}
</div> </div>
<div v-if="event.maxParticipants" class="info-row"> <div v-if="event.maxParticipants > 0" class="info-row">
<i class="pi pi-user mr-1" /><strong>참여:</strong> {{ participants.length }}/{{ event.maxParticipants <i class="pi pi-user mr-1" /><strong>참여:</strong> {{ participants.length }}/{{ event.maxParticipants
}} }}
</div> </div>