1
0
forked from test/crm

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

fix: cannot make call (backport #821)
This commit is contained in:
Shariq Ansari 2025-05-15 11:27:43 +05:30 committed by GitHub
commit 2262df7d52
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,
},
]