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" }), },