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(),
},
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',
+ }"
+ />