fixing display profile
This commit is contained in:
parent
acbd63a053
commit
58a1cc9bb8
1 changed files with 6 additions and 4 deletions
|
|
@ -476,7 +476,7 @@ onMounted(() => {
|
|||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||
<div class="col-6">
|
||||
{{
|
||||
fatherData.prefix
|
||||
fatherData.prefix && fatherData.firstName && fatherData.lastName
|
||||
? fatherData.prefix +
|
||||
fatherData.firstName +
|
||||
" " +
|
||||
|
|
@ -550,7 +550,7 @@ onMounted(() => {
|
|||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||
<div class="col-6">
|
||||
{{
|
||||
motherData.prefix
|
||||
motherData.prefix && motherData.firstName && motherData.lastName
|
||||
? motherData.prefix +
|
||||
motherData.firstName +
|
||||
" " +
|
||||
|
|
@ -644,7 +644,7 @@ onMounted(() => {
|
|||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||
<div class="col-6">
|
||||
{{
|
||||
coupleData.prefix
|
||||
coupleData.prefix && coupleData.firstName && coupleData.lastName
|
||||
? coupleData.prefix +
|
||||
coupleData.firstName +
|
||||
" " +
|
||||
|
|
@ -748,7 +748,9 @@ onMounted(() => {
|
|||
</div>
|
||||
<div class="col-6">
|
||||
{{
|
||||
item.childrenPrefix
|
||||
item.childrenPrefix &&
|
||||
item.childrenFirstName &&
|
||||
item.childrenLastName
|
||||
? item.childrenPrefix +
|
||||
item.childrenFirstName +
|
||||
" " +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue