From bbae6f41a591d110645279ca8cd771d7531ed2e0 Mon Sep 17 00:00:00 2001 From: Collin Choy Date: Wed, 16 Oct 2024 16:03:26 -0400 Subject: [PATCH 1/3] Add a tooltip describing the duration of the activity column on deployment table. --- src/components/DeploymentList.vue | 11 ++++++++++- src/components/ExtraInfoTooltip.vue | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/DeploymentList.vue b/src/components/DeploymentList.vue index be43376c2..ba9eb2ad2 100644 --- a/src/components/DeploymentList.vue +++ b/src/components/DeploymentList.vue @@ -42,6 +42,13 @@ + + @@ -128,7 +135,8 @@ DeploymentTagsInput, DeploymentDisableToggle, DeploymentStatusBadge, - DeploymentScheduleTags + DeploymentScheduleTags, + ExtraInfoTooltip } from '@/components' import { useCan, useDeploymentsPaginationFilterFromRoute, useWorkspaceRoutes, useDeployments, useComponent } from '@/compositions' import { Deployment } from '@/models' @@ -136,6 +144,7 @@ import { ClassValue } from '@/types' import { deploymentSortOptions } from '@/types/SortOptionTypes' + const props = defineProps<{ filter?: DeploymentsFilter, prefix?: string, diff --git a/src/components/ExtraInfoTooltip.vue b/src/components/ExtraInfoTooltip.vue index e2184ce36..611b34c8b 100644 --- a/src/components/ExtraInfoTooltip.vue +++ b/src/components/ExtraInfoTooltip.vue @@ -1,6 +1,6 @@