We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2a2ea commit f6ca6f8Copy full SHA for f6ca6f8
src/server/services/recruitCRM.js
@@ -26,6 +26,7 @@ const JOB_FIELDS_RESPONSE = [
26
'salary_type',
27
'max_annual_salary',
28
'job_description_text',
29
+ 'job_status',
30
];
31
const CANDIDATE_FIELDS_RESPONSE = [
32
'id',
src/shared/components/Gigs/GigDetails/index.jsx
@@ -66,7 +66,7 @@ export default function GigDetails(props) {
66
return (
67
<div styleName="container">
68
{
69
- job.error || job.enable_job_application_form !== 1 ? (
+ job.error || job.job_status.id !== 1 || job.enable_job_application_form !== 1 ? (
70
<div styleName="error">
71
{ job.error ? <SadFace /> : null }
72
<h3>{ job.error ? 'Gig does not exist' : 'This Gig has been Fulfilled'}</h3>
0 commit comments