From 966ab3ef8d0f53d256761dca871ea1dd21b9f711 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 19 Feb 2024 14:20:06 +0530 Subject: [PATCH] fix: disabled tooltip from call logs listview --- frontend/src/components/ListViews/CallLogsListView.vue | 8 ++++++-- frontend/src/pages/CallLogs.vue | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue index ca9f9078..33f0c3c2 100644 --- a/frontend/src/components/ListViews/CallLogsListView.vue +++ b/frontend/src/components/ListViews/CallLogsListView.vue @@ -8,6 +8,7 @@ params: { callLogId: row.name }, }), selectable: options.selectable, + showTooltip: options.showTooltip, }" row-key="name" > @@ -35,12 +36,13 @@ -
{{ item.timeAgo }} -
+
({ selectable: true, + showTooltip: true, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/pages/CallLogs.vue b/frontend/src/pages/CallLogs.vue index 7a2923d3..7a188d81 100644 --- a/frontend/src/pages/CallLogs.vue +++ b/frontend/src/pages/CallLogs.vue @@ -16,6 +16,7 @@ :rows="rows" :columns="callLogs.data.columns" :options="{ + showTooltip: false, rowCount: callLogs.data.row_count, totalCount: callLogs.data.total_count, }"