diff --git a/src/components/jobPopout/JobListPopout.jsx b/src/components/jobPopout/JobListPopout.jsx index aaca77c..b2c0779 100644 --- a/src/components/jobPopout/JobListPopout.jsx +++ b/src/components/jobPopout/JobListPopout.jsx @@ -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;