From 75eae614923fd01c989920f98c4af90f4ce825c3 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 19 Feb 2024 14:18:43 +0530 Subject: [PATCH] fix: disabled tooltip from tasks listview --- frontend/src/components/ListViews/TasksListView.vue | 7 +++++-- frontend/src/pages/Tasks.vue | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ListViews/TasksListView.vue b/frontend/src/components/ListViews/TasksListView.vue index 958af21b..2e74a13d 100644 --- a/frontend/src/components/ListViews/TasksListView.vue +++ b/frontend/src/components/ListViews/TasksListView.vue @@ -5,6 +5,7 @@ :options="{ onRowClick: (row) => emit('showTask', row.name), selectable: options.selectable, + showTooltip: options.showTooltip, }" row-key="name" > @@ -47,12 +48,13 @@ /> -
{{ item.timeAgo }} -
+
({ selectable: true, + showTooltip: true, totalCount: 0, rowCount: 0, }), diff --git a/frontend/src/pages/Tasks.vue b/frontend/src/pages/Tasks.vue index 2f6335ed..70b54ca0 100644 --- a/frontend/src/pages/Tasks.vue +++ b/frontend/src/pages/Tasks.vue @@ -21,6 +21,7 @@ :rows="rows" :columns="tasks.data.columns" :options="{ + showTooltip: false, rowCount: tasks.data.row_count, totalCount: tasks.data.total_count, }"