diff --git a/src/components/03_customer-management/FormEmployeeWorkHistory.vue b/src/components/03_customer-management/FormEmployeeWorkHistory.vue index fb87793d..a99d4258 100644 --- a/src/components/03_customer-management/FormEmployeeWorkHistory.vue +++ b/src/components/03_customer-management/FormEmployeeWorkHistory.vue @@ -52,7 +52,7 @@ function addData() { employeeWork.value?.push({ workEndDate: null, workPermitExpireDate: null, - workPermitIssuDate: null, + workPermitIssueDate: null, workPermitNo: '', workplace: '', jobType: '', @@ -269,7 +269,7 @@ const workplaceFilter = selectFilterOptionRefMod( /> { { workEndDate: null, workPermitExpireDate: null, - workPermitIssuDate: null, + workPermitIssueDate: null, workPermitNo: '', workplace: '', jobType: '', diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index c7a02cb6..bb225cfd 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -193,7 +193,7 @@ export type EmployeeWork = { createdBy: string; workEndDate: Date; workPermitExpireDate: Date; - workPermitIssuDate: Date; + workPermitIssueDate: Date; workPermitNo: string; workplace: string; jobType: string; @@ -207,7 +207,7 @@ export type EmployeeWork = { export type EmployeeWorkCreate = { workEndDate?: Date | null; workPermitExpireDate?: Date | null; - workPermitIssuDate?: Date | null; + workPermitIssueDate?: Date | null; workPermitNo?: string; workplace?: string; jobType?: string;