Skip to content

Commit

Permalink
Merge pull request #24 from CityOfPhiladelphia/main
Browse files Browse the repository at this point in the history
adds link icon to legal services
  • Loading branch information
ajrothwell authored Apr 24, 2024
2 parents 8cf580f + 29862db commit a59f261
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 a59f261

Please sign in to comment.