Skip to content
Snippets Groups Projects
Commit 7c6f76f9 authored by Jean-Baptiste Pasquier's avatar Jean-Baptiste Pasquier
Browse files

fix: remove non breakable spaces

parent f7ce9325
No related branches found
No related tags found
No related merge requests found
Pipeline #17402 passed with stage
in 57 seconds
......@@ -739,7 +739,7 @@ utils.importCore().then(async (core) => {
<!-- Commented: No map link in resource? -->
<!-- <div class="row valign-wrapper">
<div class="col s12 text-link text-link-red">
View map&nbsp;<icon-mdi-open-in-new
View map<icon-mdi-open-in-new
></icon-mdi-open-in-new>
</div>
</div> -->
......
......@@ -92,7 +92,7 @@ importCore().then(core => {
</div>
<div class="row no-margin-bottom valign-wrapper">
<div class="col s12 text-link text-link-red">
<a href="tel:${resource["dfc-b:hasPhoneNumber"]}" target="_blank">${resource["dfc-b:hasPhoneNumber"]}&nbsp;<icon-mdi-phone-in-talk></icon-mdi-phone-in-talk></a>
<a href="tel:${resource["dfc-b:hasPhoneNumber"]}" target="_blank">${resource["dfc-b:hasPhoneNumber"]}<icon-mdi-phone-in-talk></icon-mdi-phone-in-talk></a>
</div>
</div>
` : nothing}
......@@ -101,7 +101,7 @@ importCore().then(core => {
</div>
<div class="row no-margin-bottom valign-wrapper">
<div class="col s12 text-link text-link-red">
<a class="truncate" href="mailto:${resource["dfc-b:email"]}" target="_blank">${resource["dfc-b:email"]}&nbsp;<icon-mdi-email-outline></icon-mdi-email-outline></a>
<a class="truncate" href="mailto:${resource["dfc-b:email"]}" target="_blank">${resource["dfc-b:email"]}<icon-mdi-email-outline></icon-mdi-email-outline></a>
</div>
</div>
</div>
......
......@@ -17,7 +17,7 @@ customElements.define(
? html`
<div class="row no-margin-bottom valign-wrapper">
<div class="col s12 text-link text-link-red">
<a href="${this.value}" target="_blank">Producer website&nbsp;<icon-mdi-open-in-new></icon-mdi-open-in-new></a>
<a href="${this.value}" target="_blank">Producer website<icon-mdi-open-in-new></icon-mdi-open-in-new></a>
</div>
</div>`
: ""}`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment