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, }"