This commit is contained in:
Ebube
2023-05-29 01:16:30 +01:00
parent 1a7e6324eb
commit 6b535ecd57
+4 -1
View File
@@ -79,7 +79,10 @@ function JobListPopout({ details, onClose, situation }) {
let jobReq = {
job_id,
job_uid,
job_description: job_description !== null ? job_description : " ",
job_description:
(job_description !== null) | ""
? job_description
: details.description,
};
let reqData;