From ab08036962d361c628d7d9f30ce7f64df4e61731 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Wed, 30 Oct 2024 09:04:55 +0700 Subject: [PATCH] fix: typo --- .../03_customer-management/FormEmployeeWorkHistory.vue | 4 ++-- src/pages/03_customer-management/form.ts | 2 +- src/stores/employee/types.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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;