Skip to content

Commit

Permalink
fix: using absolute links for events
Browse files Browse the repository at this point in the history
  • Loading branch information
martinheidegger committed Jun 19, 2023
1 parent 9392605 commit 34a0671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/SiteMainEvents/MeetupEventList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defineProps<{
<div v-if="!eventGroups">Loading ...</div>
<div v-else v-for="{ name, events }, index in eventGroups" :key="index">
<h2 v-if="name" class="heading">{{name}}</h2>
<MeetupEventItem v-for="event in events" :key="event.id" :title="event.title" :date="dayjs(event.time)" :url="`events/${event.id}`" :group="event.group.type" />
<MeetupEventItem v-for="event in events" :key="event.id" :title="event.title" :date="dayjs(event.time)" :url="`/events/${event.id}`" :group="event.group.type" />
</div>
</div>
</template>
Expand Down

0 comments on commit 34a0671

Please sign in to comment.