Skip to content

Commit 33d308a

Browse files
committed
fix wavoip phone button
1 parent f0f1826 commit 33d308a

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

app/javascript/dashboard/components/widgets/conversation/MoreActions.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ const [showEmailActionsModal, toggleEmailModal] = useToggle(false);
2424
const [showActionsDropdown, toggleDropdown] = useToggle(false);
2525
2626
const currentChat = computed(() => store.getters.getSelectedChat);
27-
// old callInfo: 'webphone/getCallInfo',
28-
const callInfo = computed(() => store.getters.getCallInfo);
27+
const callInfo = computed(() => store.getters['webphone/getCallInfo']);
2928
3029
const actionMenuItems = computed(() => {
3130
const items = [];
@@ -55,7 +54,7 @@ const actionMenuItems = computed(() => {
5554
5655
if (!callInfo.value.id) {
5756
items.push({
58-
icon: 'call',
57+
icon: 'i-lucide-phone-call',
5958
label: t('WEBPHONE.CALL'),
6059
action: 'startCall',
6160
value: 'startCall',

0 commit comments

Comments
 (0)