diff --git a/src/widjets-display-territory-tzcld.js b/src/widjets-display-territory-tzcld.js index 65d2d12f676fd7ba938289249a7d4a105871bdcd..b3828f60b4061f9bfd20790d99176b629a442430 100644 --- a/src/widjets-display-territory-tzcld.js +++ b/src/widjets-display-territory-tzcld.js @@ -92,7 +92,7 @@ import("./utils.js").then((utils) => { let phones = await job.phones ; let emails = await job.emails ; - render += `<div class="segment half padding-left-xxlarge padding-right-xxlarge margin-top-xxlarge margin-bottom-none">`; + render += `<div class="segment half padding-left-xxlarge padding-right-xxlarge margin-top-xxlarge margin-bottom-none whitespace-normal">`; if(await job.name !="") { render += `<h3 class="position text-medium text-color-secondary text-xlarge margin-top-none">${await job.name}</h3>`; } else { @@ -100,12 +100,12 @@ import("./utils.js").then((utils) => { } render += `<div class="full address padding-bottom-small"> <div class="segment icontz-mdi_map-marker icon-third text-xxlarge text-top padding-right-xsmall"></div> - <div class="segment width-90">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div> + <div class="segment width-90 whitespace-normal">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div> </div>`; if (await phones.getLdpContains().length > 0) { render += `<div class="full phone padding-bottom-small"> <div class="segment icontz-ic_call icon-third text-xxlarge text-top padding-right-xsmall"></div> - <solid-display class="segment width-90" bind-resources="" fields="phones" + <solid-display class="segment width-90 whitespace-normal" bind-resources="" fields="phones" widget-phones="customtzcld-display-user-profile-phones" data-src="${await job}" solid-resource=""></solid-display> </div>`; @@ -114,7 +114,7 @@ import("./utils.js").then((utils) => { if (await emails.getLdpContains().length > 0 ) { render += `<div class="full email padding-bottom-small"> <div class="segment icontz-mdi_email-outline icon-third text-xxlarge text-top padding-right-xsmall"></div> - <solid-display class="segment width-90" bind-resources="" fields="emails" + <solid-display class="segment width-90 whitespace-normal" bind-resources="" fields="emails" widget-emails="customtzcld-display-user-profile-emails" data-src="${await job}" solid-resource=""></solid-display> </div>`;