Skip to content

Commit

Permalink
Merge pull request #15 from quisquous/fix_off_by_one_dates
Browse files Browse the repository at this point in the history
"Fix" off by one dates
  • Loading branch information
quisquous authored Nov 20, 2023
2 parents 56f3d69 + a9538e0 commit aa0f56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MeetingEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const props = defineProps({
<h3>{{ title }}</h3>
<div class="when-and-where">
<span class="date">
{{ Intl.DateTimeFormat('default', {dateStyle: 'long'}).format(new Date(date)) }}
{{ Intl.DateTimeFormat('default', {dateStyle: 'long'}).format(new Date(`${date}T00:00:00`)) }}
</span>
<span v-if="location" class="location">
at {{ location }}
Expand Down

0 comments on commit aa0f56c

Please sign in to comment.