diff --git a/src/modules/04_registryPerson/components/detail/PersonalInformation/04_FamilyNew.vue b/src/modules/04_registryPerson/components/detail/PersonalInformation/04_FamilyNew.vue index f7349afe8..e3d0e7c3b 100644 --- a/src/modules/04_registryPerson/components/detail/PersonalInformation/04_FamilyNew.vue +++ b/src/modules/04_registryPerson/components/detail/PersonalInformation/04_FamilyNew.vue @@ -476,7 +476,7 @@ onMounted(() => {
ชื่อ-นามสกุล
{{ - fatherData.prefix && fatherData.firstName && fatherData.lastName + fatherData.prefix || fatherData.firstName || fatherData.lastName ? fatherData.prefix + fatherData.firstName + " " + @@ -550,7 +550,7 @@ onMounted(() => {
ชื่อ-นามสกุล
{{ - motherData.prefix && motherData.firstName && motherData.lastName + motherData.prefix || motherData.firstName || motherData.lastName ? motherData.prefix + motherData.firstName + " " + @@ -644,7 +644,7 @@ onMounted(() => {
ชื่อ-นามสกุล
{{ - coupleData.prefix && coupleData.firstName && coupleData.lastName + coupleData.prefix || coupleData.firstName || coupleData.lastName ? coupleData.prefix + coupleData.firstName + " " + @@ -748,8 +748,8 @@ onMounted(() => {
{{ - item.childrenPrefix && - item.childrenFirstName && + item.childrenPrefix || + item.childrenFirstName || item.childrenLastName ? item.childrenPrefix + item.childrenFirstName +