@vgroup/dialbox 0.7.53 → 0.7.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4087,7 +4087,7 @@ class CallProgressComponent {
4087
4087
  let contactInfo = this.contacts.find((c) => {
4088
4088
  return c?.numbersList[0]?.number == number || c?.numbersList[1]?.number == number;
4089
4089
  });
4090
- return contactInfo?.firstName || contactInfo?.lastName ? `${contactInfo?.firstName || ''} ${contactInfo?.lastName || ''}` : null;
4090
+ return contactInfo?.firstName || contactInfo?.middleName || contactInfo?.lastName ? `${contactInfo?.firstName || ''} ${contactInfo?.middleName || ''} ${contactInfo?.lastName || ''}` : null;
4091
4091
  }
4092
4092
  getImg(number) {
4093
4093
  let contactInfo = this.contacts.find((c) => {