Skip to content

Commit

Permalink
fixes parentSelfServiceURL again
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Jan 21, 2025
1 parent 27306b2 commit 6d1b2a1
Showing 1 changed file with 4 additions and 19 deletions.
23 changes: 4 additions & 19 deletions src/components/ExpandCollapseContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -457,37 +457,22 @@ const transformPhone = (value) => {
</div>

<div
v-if="item.attributes.ParentSelfServiceURL"
v-if="item.properties.ParentSelfServiceURL"
class="columns is-mobile"
>
<div class="column is-11">
<b>{{ $t('parentSelfServiceURL') }}:</b><a
target="_blank"
:href="makeValidUrl(item.attributes.ParentSelfServiceURL)"
:href="makeValidUrl(item.properties.ParentSelfServiceURL)"
>
{{ item.attributes.ParentSelfServiceURL }}
{{ item.properties.ParentSelfServiceURL }}
<font-awesome-icon icon="external-link-alt" />
</a>
</div>
</div>

<div
v-if="item.attributes.ParentSelfServiceURL"
class="columns is-mobile"
>
<div class="column is-11">
<b>{{ $t('parentSelfServiceURL') }}:</b><a
target="_blank"
:href="makeValidUrl(item.attributes.ParentSelfServiceURL)"
>
{{ item.attributes.ParentSelfServiceURL }}
<font-awesome-icon icon="external-link-alt" />
</a>
</div>
</div>

<div
v-if="item.attributes.FACEBOOK && item.attributes.FACEBOOK !== 'Lloyd Hall'"
v-if="item.properties.FACEBOOK && item.properties.FACEBOOK !== 'Lloyd Hall'"
class="columns is-mobile website-div"
>
<div class="column is-1">
Expand Down

0 comments on commit 6d1b2a1

Please sign in to comment.