diff --git a/src/styles/index.scss b/src/styles/index.scss
index fcbdac0f1a6f8f27a3dea7fb071e5e91e5663e07..59c3b5587e32860d554651f06b6976818c3237cc 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -315,7 +315,9 @@ solid-form {
     box-shadow: none!important;
   }
 }
-
+.white-space-normal {
+  white-space: normal!important;
+}
 /* All link on main */ 
 main .link {
   color: var(--color-primary);
diff --git a/src/widjets-display-territory-tzcld.js b/src/widjets-display-territory-tzcld.js
index 42c4e2ff145b8f67f5bbb87e230a52dbb9890655..1f8b25c307b46b58bd6e92edb02d832cff23c0ea 100644
--- a/src/widjets-display-territory-tzcld.js
+++ b/src/widjets-display-territory-tzcld.js
@@ -249,16 +249,26 @@ import("./utils.js").then((utils) => {
 
             </div>`;
 
-          render += `<div><solid-display class="segment" bind-resources="" nested-field="tzcld_profile" fields="regions"
-          widget-regions="customtzcld-display-territory-regions"
-          data-src="${tzcldprofile.id}" solid-resource=""></solid-display>
-          <div class="region segment tag color-fourth">${await etiquettes.kind.name}</div>
-          <div class="region segment tag color-fourth">${await etiquettes.step_state.name}</div>
-          </div>
+          render += `<div class="margin-top-xxsmall">
+            <solid-display class="segment" bind-resources="" nested-field="tzcld_profile" fields="regions"     widget-regions="customtzcld-display-territory-regions" data-src="${tzcldprofile.id}" solid-resource=""></solid-display>`;
+          if (await etiquettes.kind != null) {
+          render += `<div class="region segment tag color-fourth">${await etiquettes.kind.name}</div>`;
+          }
+console.log(etiquettes.step_state) ;
+          if (await etiquettes.step_state != null) {
+          render += `<div class="region segment tag color-fourth">${await etiquettes.step_state.name}</div>`;
+          }
+          render += `</div>`;
 
-          <div class="margin-top-small"><a class="text-color-primary" href="${await tzcldprofile.profile.website}">${await tzcldprofile.profile.website}</a></div>
-          <div class="description margin-top-small">${await tzcldprofile.profile.description}</div>
-        </div>
+          if (await tzcldprofile.profile.website != '') {
+          render += `<div class="margin-top-small"><a class="text-color-primary" href="${await tzcldprofile.profile.website}">${await tzcldprofile.profile.website}</a></div>`;
+          }
+          if (await tzcldprofile.profile.description != '') {
+          render += `<div class="description margin-top-small white-space-normal">${await tzcldprofile.profile.description}</div>`;
+          }
+          
+          
+        render += `</div>
       </div>` ;//tzcld-territory-profile-wrapper