job_detail added #111

Merged
ameye merged 1 commits from enable-and-active-jobs into master 2023-05-29 00:25:27 +00:00
+2 -5
View File
@@ -75,14 +75,11 @@ function JobListPopout({ details, onClose, situation }) {
};
const jobFieldHandler = async (values, helpers) => {
let { job_id, job_uid, job_description } = details;
let { job_id, job_uid, job_detail } = details;
let jobReq = {
job_id,
job_uid,
job_description:
(job_description !== null) | ""
? job_description
: details.description,
job_description: job_detail
};
let reqData;