From 294aea6af5a67dfe4438e7ba76e9a0137e79ebca Mon Sep 17 00:00:00 2001
From: antoine37120 <ant.dupre@gmail.com>
Date: Tue, 26 Sep 2023 11:06:21 +0200
Subject: [PATCH] fix: force white space normal ebe content on territory

---
 src/widjets-display-territory-tzcld.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/widjets-display-territory-tzcld.js b/src/widjets-display-territory-tzcld.js
index 65d2d12..b3828f6 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>`;
-- 
GitLab