Skip to content

Commit

Permalink
resolves conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Jan 21, 2025
2 parents b01acee + 9ecd3bd commit 27306b2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions src/components/ExpandCollapseContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,21 @@ const transformPhone = (value) => {
</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'"
class="columns is-mobile website-div"
Expand Down
2 changes: 1 addition & 1 deletion src/data-sources/ost.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
newData.features.push({
attributes: datum,
latlng: [ datum.latitude, datum.longitude ],
})
});
}
return newData;
},
Expand Down

0 comments on commit 27306b2

Please sign in to comment.