Skip to content

Commit 6a46fd5

Browse files
Merge pull request #5502 from topcoder-platform/gig-application-trim-fields
Gig application trim fields
2 parents 165ae8f + 3a5b2a1 commit 6a46fd5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ workflows:
283283
filters:
284284
branches:
285285
only:
286-
- gig-mkt-ab
286+
- free
287287
# This is alternate dev env for parallel testing
288288
- "build-qa":
289289
context : org-global
@@ -297,7 +297,7 @@ workflows:
297297
filters:
298298
branches:
299299
only:
300-
- gig-mkt-ab
300+
- free
301301
# This is stage env for production QA releases
302302
- "build-prod-staging":
303303
context : org-global

src/shared/actions/recruitCRM.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function normalizeRecruitPayload(job, payload) {
6969
contact_number: payload.phone,
7070
city: payload.city,
7171
locality: _.find(payload.country, { selected: true }).label,
72-
salary_expectation: payload.payExpectation,
72+
salary_expectation: _.trim(payload.payExpectation),
7373
skill: payload.skills.filter(s => s.selected).map(s => s.label).join(','),
7474
custom_fields: [
7575
{

0 commit comments

Comments
 (0)