Skip to content

Commit

Permalink
add phone and biography
Browse files Browse the repository at this point in the history
  • Loading branch information
ipula committed Jan 7, 2025
1 parent d0d0fd3 commit 2eeeb74
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/pages/userInvitation/UserInvitationDetailsFormStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,23 @@
:heading="t('user.affiliation')"
:value="localize(store.invitationPayload.affiliation)"
></FormDisplayItemBasic>
<FormDisplayItemBasic
v-if="store.invitationPayload.phone"
heading-element="h4"
:heading="t('user.phone')"
:value="store.invitationPayload.phone"
></FormDisplayItemBasic>
<FormDisplayItemBasic
v-if="localize(store.invitationPayload.biography)"
heading-element="h4"
:heading="t('user.biography')"
:value="
localize(store.invitationPayload.biography).replace(
/(<([^>]+)>)/gi,
'',
)
"
></FormDisplayItemBasic>
</div>
</div>
<div class="p-8">
Expand Down

0 comments on commit 2eeeb74

Please sign in to comment.