}
{String(ismetiermanaged) !== "0" && String(ismetiermanaged) !== "1" &&
{(!DetailTraining.img_url || String(DetailTraining.img_url).length <= 0) &&
@@ -2087,9 +2087,9 @@ const DisplayDetailClass_new_v2 = (props) => {
{parse(String(JSON.parse(formation).title)).substring(0, 50)}
-
- {(String(JSON.parse(formation).price))} €HT
-
+ {JSON.parse(formation).price &&
+ {(String(JSON.parse(formation).price))} €HT
+
}
diff --git a/src/components/GestionAdministrative.js b/src/components/GestionAdministrative.js
index cfbf7de..a603212 100644
--- a/src/components/GestionAdministrative.js
+++ b/src/components/GestionAdministrative.js
@@ -2375,7 +2375,11 @@ function GestionAdministrative(props) {
{(JSON.parse(session).date_debut).substring(0, 10)} au {(JSON.parse(session).date_fin).substring(0, 10)} -
{(JSON.parse(session).distantiel) === "1" && " A Distance - "}
- {(JSON.parse(session).presentiel) === "1" && " En Présentiel - " + (JSON.parse(session).adresse)} {(JSON.parse(session).code_postal)}
+ {(JSON.parse(session).presentiel) === "1" && (JSON.parse(session).adresse) && " En Présentiel - " + (JSON.parse(session).adresse)}
+ {(JSON.parse(session).presentiel) === "1" && (!JSON.parse(session).adresse) && " En Présentiel - " }
+ {(JSON.parse(session).code_postal) && " "+(JSON.parse(session).code_postal) }
+
+
diff --git a/src/components/Inscription_Information.js b/src/components/Inscription_Information.js
index eb8d62c..e1ce849 100644
--- a/src/components/Inscription_Information.js
+++ b/src/components/Inscription_Information.js
@@ -633,11 +633,13 @@ function Inscription_Information(props) {