fix: update label for call log actions to "Log a Call"

(cherry picked from commit 742bd6e213a9397d2ec35357ea15f35483141ae0)
This commit is contained in:
Shariq Ansari 2025-07-24 12:47:14 +05:30 committed by Mergify
parent 59c4d90278
commit a6e05c2a65
2 changed files with 3 additions and 3 deletions

View File

@ -792,7 +792,7 @@ function scroll(hash) {
const callActions = computed(() => {
let actions = [
{
label: __('Create Call Log'),
label: __('Log a Call'),
onClick: () => modalRef.value.createCallLog(),
},
{

View File

@ -134,7 +134,7 @@ const defaultActions = computed(() => {
},
{
icon: h(PhoneIcon, { class: 'h-4 w-4' }),
label: __('Create Call Log'),
label: __('Log a Call'),
onClick: () => props.modalRef.createCallLog(),
},
{
@ -177,7 +177,7 @@ function getTabIndex(name) {
const callActions = computed(() => {
let actions = [
{
label: __('Create Call Log'),
label: __('Log a Call'),
icon: 'plus',
onClick: () => props.modalRef.createCallLog(),
},