From 6b535ecd5734b49439d4a0457b7595c659be685c Mon Sep 17 00:00:00 2001 From: Ebube Date: Mon, 29 May 2023 01:16:30 +0100 Subject: [PATCH] . --- src/components/jobPopout/JobListPopout.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/jobPopout/JobListPopout.jsx b/src/components/jobPopout/JobListPopout.jsx index 5934438..aaca77c 100644 --- a/src/components/jobPopout/JobListPopout.jsx +++ b/src/components/jobPopout/JobListPopout.jsx @@ -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;