Skip to content

Commit

Permalink
Update IndexEvent.vue - Fix Time
Browse files Browse the repository at this point in the history
Changes Month to Minute in days.format
  • Loading branch information
Balenty authored Sep 17, 2024
1 parent 948744b commit dc353e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Event/IndexEvent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const seatColor = (seatCount) => {
</div>
<div>
<div>{{ event.room.name }}</div>
<div>{{ dayjs(event.starts_at).format("DD.MM HH:MM") }}</div>
<div>{{ dayjs(event.starts_at).format("DD.MM HH:mm") }}</div>
</div>
</div>
<div class="flex items-center justify-end pl-8">
Expand Down

0 comments on commit dc353e4

Please sign in to comment.