Skip to content

Commit

Permalink
fixes spacing for legal services
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Jan 3, 2025
1 parent ae65a59 commit c1be10f
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 @@ -33,7 +33,7 @@ const parseServiceList = (list) => {
if (list[i] === 'Legal services') {
let legalLink = props.item.properties.website_legal;
// let link = `<a href="${legalLink}" target="_blank">${$i18n.messages[i18nLocale][list[i]]}<i class='fa fa-external-link-alt'></i></a>`;
let link = `<a href="${legalLink}" target="_blank">${t(list[i])}<i class='fa fa-external-link-alt'></i></a>`;
let link = `<a href="${legalLink}" target="_blank">${t(list[i])} <i class='fa fa-external-link-alt'></i></a>`;
formattedService.push(link);
} else {
// formattedService.push($i18n.messages[i18nLocale][list[i]]);
Expand Down

0 comments on commit c1be10f

Please sign in to comment.