Skip to content

Commit

Permalink
adds link icon to legal services
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Apr 24, 2024
1 parent b2e97c7 commit 29862db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExpandCollapseContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default {
for (let i in list) {
if (list[i] === 'Legal services') {
let legalLink = this.item.website_legal;
let link = `<a href="${legalLink}" target="_blank">${list[i]}</a>`;
let link = `<a href="${legalLink}" target="_blank">${list[i]}<i class='fa fa-external-link-alt'></i></a>`;
formattedService.push(link);
} else {
formattedService.push(list[i]);
Expand Down

0 comments on commit 29862db

Please sign in to comment.