diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue index 20096327..c4fa49b9 100644 --- a/frontend/src/components/ListViews/CallLogsListView.vue +++ b/frontend/src/components/ListViews/CallLogsListView.vue @@ -231,6 +231,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/ContactsListView.vue b/frontend/src/components/ListViews/ContactsListView.vue index bd31ca4a..2550f76a 100644 --- a/frontend/src/components/ListViews/ContactsListView.vue +++ b/frontend/src/components/ListViews/ContactsListView.vue @@ -227,6 +227,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/DealsListView.vue b/frontend/src/components/ListViews/DealsListView.vue index 94a292d4..3fd04a00 100644 --- a/frontend/src/components/ListViews/DealsListView.vue +++ b/frontend/src/components/ListViews/DealsListView.vue @@ -269,6 +269,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/EmailTemplatesListView.vue b/frontend/src/components/ListViews/EmailTemplatesListView.vue index 1ab985bc..c089296c 100644 --- a/frontend/src/components/ListViews/EmailTemplatesListView.vue +++ b/frontend/src/components/ListViews/EmailTemplatesListView.vue @@ -219,6 +219,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/LeadsListView.vue b/frontend/src/components/ListViews/LeadsListView.vue index fcb09702..4b701274 100644 --- a/frontend/src/components/ListViews/LeadsListView.vue +++ b/frontend/src/components/ListViews/LeadsListView.vue @@ -278,6 +278,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/OrganizationsListView.vue b/frontend/src/components/ListViews/OrganizationsListView.vue index 7368c246..0fb32563 100644 --- a/frontend/src/components/ListViews/OrganizationsListView.vue +++ b/frontend/src/components/ListViews/OrganizationsListView.vue @@ -212,6 +212,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), }) diff --git a/frontend/src/components/ListViews/TasksListView.vue b/frontend/src/components/ListViews/TasksListView.vue index 8bb8fe78..2273697f 100644 --- a/frontend/src/components/ListViews/TasksListView.vue +++ b/frontend/src/components/ListViews/TasksListView.vue @@ -230,6 +230,8 @@ watch(pageLengthCount, (val, old_value) => { const listBulkActionsRef = ref(null) defineExpose({ - customListActions: listBulkActionsRef.value?.customListActions, + customListActions: computed( + () => listBulkActionsRef.value?.customListActions + ), })