Skip to content

Commit

Permalink
Fix wrong master merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Tirokk committed Feb 12, 2024
1 parent c45d831 commit 4c0eed3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/components/PostTeaser/PostTeaser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<client-only>
<div class="date-row" v-if="post.createdAt">
<span class="text">
<relative-date-time :date-time="post.createdAt" />
<date-time :date-time="post.createdAt" />
<slot name="dateTime"></slot>
</span>
</div>
Expand All @@ -119,7 +119,7 @@ import CounterIcon from '~/components/_new/generic/CounterIcon/CounterIcon'
import DateTimeRange from '~/components/DateTimeRange/DateTimeRange'
import HcRibbon from '~/components/Ribbon'
import LocationTeaser from '~/components/LocationTeaser/LocationTeaser'
import RelativeDateTime from '~/components/RelativeDateTime'
import DateTime from '~/components/DateTime'
import UserTeaser from '~/components/UserTeaser/UserTeaser'
import { mapGetters } from 'vuex'
import PostMutations from '~/graphql/PostMutations'
Expand All @@ -134,7 +134,7 @@ export default {
DateTimeRange,
HcRibbon,
LocationTeaser,
RelativeDateTime,
DateTime,
UserTeaser,
},
props: {
Expand Down

0 comments on commit 4c0eed3

Please sign in to comment.