+ );
+
+ return (
+
+
+ {job.owner
+ ? `${job.ownr_co_nm || ""}${job.ownr_fn || ""} ${job.ownr_ln || ""}`
+ : t("jobs.errors.noowner")}
+
+
+ );
+}
diff --git a/client/src/pages/jobs-create/jobs-create.container.jsx b/client/src/pages/jobs-create/jobs-create.container.jsx
index b12ee2a93..d6ee278d3 100644
--- a/client/src/pages/jobs-create/jobs-create.container.jsx
+++ b/client/src/pages/jobs-create/jobs-create.container.jsx
@@ -33,7 +33,7 @@ function JobsCreateContainer({ bodyshop }) {
variables: { id: state.owner.selectedid }
});
}
- }, [state.owner.selectedid]);
+ }, [state.owner.selectedid, loadOwner]);
const runInsertJob = job => {
console.log("Job To Save", job);
diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json
index 384a32028..1decfdd9d 100644
--- a/client/src/translations/en_us/common.json
+++ b/client/src/translations/en_us/common.json
@@ -312,6 +312,7 @@
"creating": "Error encountered while creating job. {{error}}",
"deleted": "Error deleting job.",
"noaccess": "This job does not exist or you do not have access to it.",
+ "nodamage": "No damage points on estimate.",
"nodates": "No dates specified for this job.",
"nojobselected": "No job is selected.",
"noowner": "No owner associated.",
diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json
index 20022889c..0a04706da 100644
--- a/client/src/translations/es/common.json
+++ b/client/src/translations/es/common.json
@@ -312,6 +312,7 @@
"creating": "",
"deleted": "Error al eliminar el trabajo.",
"noaccess": "Este trabajo no existe o no tiene acceso a él.",
+ "nodamage": "",
"nodates": "No hay fechas especificadas para este trabajo.",
"nojobselected": "No hay trabajo seleccionado.",
"noowner": "Ningún propietario asociado.",
diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json
index cb31d9d0c..db3fa913c 100644
--- a/client/src/translations/fr/common.json
+++ b/client/src/translations/fr/common.json
@@ -312,6 +312,7 @@
"creating": "",
"deleted": "Erreur lors de la suppression du travail.",
"noaccess": "Ce travail n'existe pas ou vous n'y avez pas accès.",
+ "nodamage": "",
"nodates": "Aucune date spécifiée pour ce travail.",
"nojobselected": "Aucun travail n'est sélectionné.",
"noowner": "Aucun propriétaire associé.",