Skip to content

Commit c28dd7e

Browse files
committed
some adjusts
1 parent 1061d05 commit c28dd7e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/talenthr/actions/update-employee/update-employee.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ export default {
363363
phone: this.phone,
364364
address: this.address,
365365
country: this.country,
366-
postal_code: this.postal_code,
366+
postal_code: this.postalCode,
367367
city: this.city,
368368
reports_to_employee_id: this.reportsToEmployeeId,
369369
emergency_contact: {

components/talenthr/talenthr.app.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default {
6363
timeOffRequestId: {
6464
type: "string",
6565
label: "Time Off Request ID",
66-
description: "The ID of the employee's time oof request",
66+
description: "The ID of the employee's time off request",
6767
async options({
6868
page, employeeId,
6969
}) {
@@ -151,7 +151,7 @@ export default {
151151
nationality: {
152152
type: "string",
153153
label: "Nationality",
154-
description: "The nacionality of the employee",
154+
description: "The nationality of the employee",
155155
async options() {
156156
const { data } = await this.listNationalities();
157157
return data;
@@ -160,7 +160,7 @@ export default {
160160
country: {
161161
type: "string",
162162
label: "Country",
163-
description: "The county where the employee lives",
163+
description: "The country where the employee lives",
164164
async options() {
165165
const { data } = await this.listCountries();
166166
return data;

0 commit comments

Comments
 (0)