@vgroup/dialbox 0.4.46 → 0.4.47

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.
@@ -1913,9 +1913,11 @@ class CallProgressComponent {
1913
1913
  if (currentCall === null || currentCall === void 0 ? void 0 : currentCall.id) {
1914
1914
  this.currentCall = currentCall;
1915
1915
  }
1916
- // if(res?.businessNumber) {
1917
- // this.getUserInformation();
1918
- // }
1916
+ let resIndex = this.currentCallList.findIndex((item) => !!item.businessNumber);
1917
+ if (resIndex > -1) {
1918
+ this.currentCallList[resIndex].IsUserInfoShow = true;
1919
+ this.getUserInformation(this.currentCallList[resIndex].participantId);
1920
+ }
1919
1921
  this.cdr.detectChanges();
1920
1922
  console.log('currentCallList', this.currentCallList);
1921
1923
  }