From 76d21200768bc2f6b4bfe3559ba2eafc8d409a23 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 20 Feb 2024 15:34:28 +0530 Subject: [PATCH] fix: apply applyFilter feat in all listviews --- .../components/ListViews/CallLogsListView.vue | 14 ++++++++++--- .../components/ListViews/ContactsListView.vue | 8 +++++-- .../components/ListViews/DealsListView.vue | 21 +++++++++++++++---- .../ListViews/EmailTemplatesListView.vue | 8 +++++-- .../components/ListViews/LeadsListView.vue | 21 +++++++++++++++---- .../ListViews/OrganizationsListView.vue | 8 +++++-- .../components/ListViews/TasksListView.vue | 9 ++++++-- frontend/src/pages/CallLogs.vue | 3 +++ frontend/src/pages/Contacts.vue | 3 +++ frontend/src/pages/Deals.vue | 3 +++ frontend/src/pages/EmailTemplates.vue | 3 +++ frontend/src/pages/Leads.vue | 3 +++ frontend/src/pages/Organizations.vue | 3 +++ frontend/src/pages/Tasks.vue | 3 +++ 14 files changed, 91 insertions(+), 19 deletions(-) diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue index 60757240..1ccb7202 100644 --- a/frontend/src/components/ListViews/CallLogsListView.vue +++ b/frontend/src/components/ListViews/CallLogsListView.vue @@ -18,10 +18,13 @@ class="mx-5" v-for="row in rows" :key="row.name" - v-slot="{ column, item }" + v-slot="{ idx, column, item }" :row="row" > - +
{ if (!organizations.value?.data?.data) return [] diff --git a/frontend/src/pages/Tasks.vue b/frontend/src/pages/Tasks.vue index bc3a601a..8c6cd405 100644 --- a/frontend/src/pages/Tasks.vue +++ b/frontend/src/pages/Tasks.vue @@ -10,6 +10,7 @@
{ if (!tasks.value?.data?.data) return []