Merge pull request #822 from frappe/mergify/bp/main-hotfix/pr-821

fix: cannot make call (backport #821)
This commit is contained in:
Shariq Ansari 2025-05-15 11:26:14 +05:30 committed by GitHub
commit 90990b62b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -184,7 +184,7 @@ const callActions = computed(() => {
{
label: __('Make a Call'),
icon: h(PhoneIcon, { class: 'h-4 w-4' }),
onClick: () => makeCall(doc.data.mobile_no),
onClick: () => makeCall(props.doc.data.mobile_no),
condition: () => callEnabled.value,
},
]