Skip to content

Commit 4d9270f

Browse files
committed
fix: Support popup contact info for all calling method
1 parent ae03539 commit 4d9270f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive-embeddable-ringcentral-phone-spa",
3-
"version": "2.12.3",
3+
"version": "2.12.4",
44
"description": "Add RingCentral Embeddable Voice widgets to Pipedrive",
55
"keywords": [
66
"RingCentral",

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export async function thirdPartyServiceConfig (serviceName) {
217217
dd.type = 'rc-show-add-contact-panel'
218218
window.postMessage(dd, '*')
219219
} else if (
220-
type === 'rc-call-ring-notify'
220+
type === 'rc-active-call-notify'
221221
) {
222222
showContactInfoPanel(call)
223223
} else if (type === 'rc-region-settings-notify') {

src/features/contacts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export function hideContactInfoPanel () {
191191
export async function showContactInfoPanel (call) {
192192
if (
193193
!call ||
194-
// call.telephonyStatus !== 'Ringing' ||
194+
call.telephonyStatus !== 'Ringing' ||
195195
call.direction === 'Outbound'
196196
) {
197197
return

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Ringcentral Embeddable Widgets for Pipedrive",
3-
"version": "2.12.3",
3+
"version": "2.12.4",
44
"description": "Add RingCentral Embeddable Voice widgets to Pipedrive",
55
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1YqYvCEeGGNOgtKrx8DfG33ujx7NgAwbyVpikug4mHiNvKZYWulw7lY5fjaD8wAy5bmXnkfULDzqMkL8UOxUcf8qD2lJFcLm+BqBtqNnoSz00vwjSOxXrcDvpvsMrjEZkI7N/FD60sTWp1U+QOehua7OboUpXb4iV7TQfppz3PsCz7qGOa4PWjUMAZTTgomUtW47Es6f/vjIeejs7Ihro3Al5Jo3SWIbjpjSU9BK34XgFvtcZx3lZQgfFiK+ZNyxlx8mgC/PLqJB+uX63ywMrT86TdcfxBuaThy98S8SCXjZTpHOP6X5pmGMk0lPM06hwxmSCBZgHOHL/Wk6r8FUlQIDAQAB",
66
"permissions": [

0 commit comments

Comments
 (0)