diff --git a/src/shared/actions/recruitCRM.js b/src/shared/actions/recruitCRM.js index 0cd9290b51..1b9b127f25 100644 --- a/src/shared/actions/recruitCRM.js +++ b/src/shared/actions/recruitCRM.js @@ -1,6 +1,7 @@ import { redux } from 'topcoder-react-utils'; import Service from 'services/recruitCRM'; import _ from 'lodash'; +import { getCustomField } from 'utils/gigs'; /** * Jobs page fetch init @@ -60,7 +61,7 @@ function normalizeRecruitPayload(job, payload) { `Date Available: ${new Date(payload.availFrom).toDateString()}`, `Heard About Gig: ${payload.reffereal}`, `Why fit: ${payload.whyFit}`, - `Able to work during timezone? ${payload.timezoneConfirm.filter(s => s.value).map(s => s.label).join(',')}`, + `Able to work during timezone? ${payload.timezoneConfirm.filter(s => s.value).map(() => getCustomField(job.custom_fields, 'Timezone')).join(',')}`, `Am I ok to work the duration? ${payload.durationConfirm.filter(s => s.value).map(s => s.label).join(',')}`, `Notes: ${payload.notes}`, ]; diff --git a/src/shared/components/Gigs/GigApply/index.jsx b/src/shared/components/Gigs/GigApply/index.jsx index 614f96fb97..9d3cc63dfa 100644 --- a/src/shared/components/Gigs/GigApply/index.jsx +++ b/src/shared/components/Gigs/GigApply/index.jsx @@ -121,6 +121,7 @@ export default function GigApply(props) { errorMsg={formErrors.email} value={formData.email} required + readonly /> Login -

Not a member? Register here.

+

Not a member? Register here.

diff --git a/src/shared/components/Gigs/GigDetails/index.jsx b/src/shared/components/Gigs/GigDetails/index.jsx index 1eca1ab48d..c6faae5040 100644 --- a/src/shared/components/Gigs/GigDetails/index.jsx +++ b/src/shared/components/Gigs/GigDetails/index.jsx @@ -108,7 +108,7 @@ export default function GigDetails(props) {
- Timezone + Working Hours {getCustomField(job.custom_fields, 'Timezone')}
diff --git a/src/shared/components/Gigs/LoginModal/index.jsx b/src/shared/components/Gigs/LoginModal/index.jsx index 978cc6bdea..7bc255789b 100644 --- a/src/shared/components/Gigs/LoginModal/index.jsx +++ b/src/shared/components/Gigs/LoginModal/index.jsx @@ -40,7 +40,7 @@ function LoginModal({ retUrl, onCancel }) { LOGIN -

Not a member? Register here.

+

Not a member? It is free to register!

); diff --git a/src/shared/components/Gigs/ReferralModal/index.jsx b/src/shared/components/Gigs/ReferralModal/index.jsx index 912ac39602..25820d8c44 100644 --- a/src/shared/components/Gigs/ReferralModal/index.jsx +++ b/src/shared/components/Gigs/ReferralModal/index.jsx @@ -105,7 +105,7 @@ function ReferralModal({ LOGIN -

Not a member? Register here.

+

Not a member? It is free to register!

)} diff --git a/src/shared/utils/gigs.js b/src/shared/utils/gigs.js index fa08f36579..3c9ba53a8c 100644 --- a/src/shared/utils/gigs.js +++ b/src/shared/utils/gigs.js @@ -10,8 +10,10 @@ import _ from 'lodash'; */ export function getSalaryType(data) { switch (data.id) { + case 1: return 'monthly'; case 2: return 'annual'; case 3: return 'week'; + case 4: return 'daily'; case 5: return 'hourly'; default: return 'n/a'; }