From 4bb4b080d5b8903e47b023586ab260181bc61ffa Mon Sep 17 00:00:00 2001 From: kittapath Date: Fri, 30 Aug 2024 22:56:55 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=AA=E0=B8=94=E0=B8=87=E0=B8=9B?= =?UTF-8?q?=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4=20?= =?UTF-8?q?=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5=E0=B8=A2=E0=B8=99?= =?UTF-8?q?=E0=B8=9A=E0=B9=89=E0=B8=B2=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail/PersonalInformation/03_Address.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue b/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue index 5a2d46d86..f6b0aebcf 100644 --- a/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue +++ b/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue @@ -112,7 +112,6 @@ const columnsHistory = ref([ field: "registrationProvince", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -124,7 +123,7 @@ const columnsHistory = ref([ field: "registrationDistrict", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), + // format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -136,7 +135,7 @@ const columnsHistory = ref([ field: "registrationSubDistrict", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), + // format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -185,7 +184,7 @@ const columnsHistory = ref([ field: "currentProvince", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), + // format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -197,7 +196,7 @@ const columnsHistory = ref([ field: "currentDistrict", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), + // format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, @@ -209,7 +208,7 @@ const columnsHistory = ref([ field: "currentSubDistrict", headerStyle: "font-size: 14px", style: "font-size: 14px", - format: (v) => (v ? v.name : "-"), + // format: (v) => (v ? v.name : "-"), sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), },