@vgroup/dialbox 0.4.191 → 0.4.193
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.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +4 -3
- package/fesm2015/vgroup-dialbox.mjs +3 -2
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +3 -2
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2184,8 +2184,9 @@ class CallProgressComponent {
|
|
|
2184
2184
|
}
|
|
2185
2185
|
async onEndCall(c, isAllCallEnd) {
|
|
2186
2186
|
if (!c.isAcceptCall) {
|
|
2187
|
-
|
|
2188
|
-
|
|
2187
|
+
let index = this.currentCallList.findIndex((res) => res.participantId == c.participantId);
|
|
2188
|
+
this.currentCallList.splice(index, 1);
|
|
2189
|
+
return false;
|
|
2189
2190
|
}
|
|
2190
2191
|
let participantId = isAllCallEnd ? 'all' : c.participantId || c.participantId;
|
|
2191
2192
|
let conferenceId = isAllCallEnd ? 'all' : c.conferenceId || this.currentCall.conferenceId;
|