From a6e05c2a65315b6b59ca30e0c0b862ef3f7ce101 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Thu, 24 Jul 2025 12:47:14 +0530 Subject: [PATCH 1/2] fix: update label for call log actions to "Log a Call" (cherry picked from commit 742bd6e213a9397d2ec35357ea15f35483141ae0) --- frontend/src/components/Activities/Activities.vue | 2 +- frontend/src/components/Activities/ActivityHeader.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/Activities/Activities.vue b/frontend/src/components/Activities/Activities.vue index e13095aa..e0b6b2f0 100644 --- a/frontend/src/components/Activities/Activities.vue +++ b/frontend/src/components/Activities/Activities.vue @@ -792,7 +792,7 @@ function scroll(hash) { const callActions = computed(() => { let actions = [ { - label: __('Create Call Log'), + label: __('Log a Call'), onClick: () => modalRef.value.createCallLog(), }, { diff --git a/frontend/src/components/Activities/ActivityHeader.vue b/frontend/src/components/Activities/ActivityHeader.vue index ca4bc03c..b566d189 100644 --- a/frontend/src/components/Activities/ActivityHeader.vue +++ b/frontend/src/components/Activities/ActivityHeader.vue @@ -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(), }, From 01418c43f624b54492497112a1793798b0d9de88 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Thu, 24 Jul 2025 13:10:58 +0530 Subject: [PATCH 2/2] refactor: MultiActionButton dropdown (cherry picked from commit b1d90952c4b8f3d149a862d186b4e8bc8e00c797) --- frontend/src/components/MultiActionButton.vue | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/frontend/src/components/MultiActionButton.vue b/frontend/src/components/MultiActionButton.vue index a5cb6ae2..1c77f353 100644 --- a/frontend/src/components/MultiActionButton.vue +++ b/frontend/src/components/MultiActionButton.vue @@ -25,25 +25,22 @@ - - + :button="{ + icon: 'chevron-down', + variant: $attrs.variant, + size: $attrs.size, + class: + '!w-6 justify-start rounded-bl-none rounded-tl-none border-0 pr-0 text-xs', + }" + />