INSR-9816: Null handling improvement
This commit is contained in:
parent
3188397a6b
commit
a19af79bb7
1 changed files with 2 additions and 2 deletions
|
|
@ -38,9 +38,9 @@ export default {
|
|||
},
|
||||
customValueMap() {
|
||||
return {
|
||||
homePhone: this.mainStore.contactInfo.homePhone,
|
||||
homePhone: this.mainStore.contactInfo.homePhone ?? '',
|
||||
extension: this.mainStore.contactInfo.extension ?? '',
|
||||
emailAddress: this.mainStore.contactInfo.emailAddress
|
||||
emailAddress: this.mainStore.contactInfo.emailAddress ?? ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue