Skip to content

Commit e042186

Browse files
committed
fix field name
1 parent dac06df commit e042186

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/gem/actions/create-candidate/create-candidate.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ export default {
7575
description: "Candidate's school",
7676
optional: true,
7777
},
78-
educationalInfo: {
78+
educationInfo: {
7979
type: "string[]",
80-
label: "Educational Info",
81-
description: "A list of objects containing candidate's educational information. **Format: [{\"school\": \"string\", \"parsed_university\": \"string\", \"parsed_school\": \"string\", \"start_date\": \"string\", \"end_date\": \"string\", \"field_of_study\": \"string\", \"parsed_major_1\": \"string\", \"parsed_major_2\": \"string\", \"degree\": \"string\"}]**. [See the documentation](https://api.gem.com/v0/reference#tag/Candidates/paths/~1v0~1candidates/post) for further details.",
80+
label: "Education Info",
81+
description: "A list of objects containing candidate's education information. **Format: [{\"school\": \"string\", \"parsed_university\": \"string\", \"parsed_school\": \"string\", \"start_date\": \"string\", \"end_date\": \"string\", \"field_of_study\": \"string\", \"parsed_major_1\": \"string\", \"parsed_major_2\": \"string\", \"degree\": \"string\"}]**. [See the documentation](https://api.gem.com/v0/reference#tag/Candidates/paths/~1v0~1candidates/post) for further details.",
8282
optional: true,
8383
},
8484
workInfo: {
@@ -154,7 +154,7 @@ export default {
154154
company: this.company,
155155
location: this.location,
156156
school: this.school,
157-
educational_info: parseObject(this.educationalInfo),
157+
education_info: parseObject(this.educationInfo),
158158
work_info: parseObject(this.workInfo),
159159
profile_urls: parseObject(this.profileUrls),
160160
phone_number: this.phoneNumber,

0 commit comments

Comments
 (0)