Skip to content

Commit

Permalink
Merge pull request #51 from os2ulf/feature/OS2UOL-124
Browse files Browse the repository at this point in the history
OS2UOL-124: Added logic for registration deadline
  • Loading branch information
SorenBonde authored Jun 12, 2024
2 parents 3bb6074 + 76619bc commit 4864936
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/view-components/RegistrationSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ const props = defineProps({
<div v-if="props.data.description" class="course__registration__price-description" v-html="props.data.price_description" />
<h4 v-if="props.data.title" class="course__registration__title" v-html="props.data.title" />
<div v-if="props.data.description" class="course__registration__description" v-html="props.data.description" />
<div v-if="props.data.deadline" class="course__registration__description" v-html="props.data.deadline" />
<div v-if="props.data.deadline" class="course__registration__description">
Tilmeldingsfrist: {{ props.data.deadline.text }}
</div>
<div v-if="props.data.phone" class="course__registration__phone">
Tlf.: {{ props.data.phone }}
</div>
Expand Down

0 comments on commit 4864936

Please sign in to comment.