From 0ceb95150c5e407c58ef69ca244120c9f0306562 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Antoine=20Dupr=C3=A9?= <ant.dupre@gmail.com>
Date: Wed, 17 May 2023 16:00:50 +0200
Subject: [PATCH] fix: muntiline organisation and function name

---
 src/widjets-display-user-tzcld.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/widjets-display-user-tzcld.js b/src/widjets-display-user-tzcld.js
index a7615fc..e9bc81c 100644
--- a/src/widjets-display-user-tzcld.js
+++ b/src/widjets-display-user-tzcld.js
@@ -130,15 +130,15 @@ import("./utils.js").then((utils) => {
           for(let job of tzcldprofile.jobs) {
               if(await job.organisation !="") {
                   if(await job.link !="") {
-                      render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position} à <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h3>`;
+                      render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} à <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h3>`;
                   } else {
-                      render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position} à ${await job.organisation}</h3>`;
+                      render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} à ${await job.organisation}</h3>`;
                   }
               } else {
-                  render +=  `<h3 class="position text-medium padding-bottom-large">${await job.position}</h3>`;
+                  render +=  `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position}</h3>`;
               }
 
-              render +=  `<div class="address padding-bottom-small">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div>`;
+              render +=  `<div class="address padding-bottom-small whitespace-normal">${await job.address} <br/> ${await job.postal_code} ${await job.city}</div>`;
               if ((await job.mobile_phone != '') || (await job.phone != '')) {
                   render +=  `<div class="phone padding-bottom-small">`;
               }
@@ -192,7 +192,7 @@ import("./utils.js").then((utils) => {
               tzcldprofile[ignore.trim()] = null;
               }
           }
-          let render = `<div class="segment full margin-top-small margin-bottom-small user-first-job">`;
+          let render = `<div class="segment full margin-top-small margin-bottom-small user-first-job whitespace-normal">`;
           for(let job of tzcldprofile.jobs) {
               if(await job.organisation !="") {
                   if(await job.link !="") {
-- 
GitLab