From 63a0d544e44039aef4d784a95cebc975d4f94e89 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Thu, 6 Apr 2023 09:50:44 -0700 Subject: [PATCH] Adds tooltip to healthcheck. Fixes #2104 (#2110) --- assets/components.d.ts | 2 ++ .../components/LogViewer/ContainerTitle.vue | 21 ++++++++++++++++++- assets/components/SideMenu.vue | 21 ++++++++++--------- 3 files changed, 33 insertions(+), 11 deletions(-) diff --git a/assets/components.d.ts b/assets/components.d.ts index 8a79b43d..69d50e31 100644 --- a/assets/components.d.ts +++ b/assets/components.d.ts @@ -11,8 +11,10 @@ declare module '@vue/runtime-core' { export interface GlobalComponents { 'Carbon:caretDown': typeof import('~icons/carbon/caret-down')['default'] 'Cil:checkCircle': typeof import('~icons/cil/check-circle')['default'] + 'Cil:circle': typeof import('~icons/cil/circle')['default'] 'Cil:columns': typeof import('~icons/cil/columns')['default'] 'Cil:findInPage': typeof import('~icons/cil/find-in-page')['default'] + 'Cil:xCircle': typeof import('~icons/cil/x-circle')['default'] ComplexLogItem: typeof import('./components/LogViewer/ComplexLogItem.vue')['default'] ContainerStat: typeof import('./components/LogViewer/ContainerStat.vue')['default'] ContainerTitle: typeof import('./components/LogViewer/ContainerTitle.vue')['default'] diff --git a/assets/components/LogViewer/ContainerTitle.vue b/assets/components/LogViewer/ContainerTitle.vue index c5c4904f..3d8a82a6 100644 --- a/assets/components/LogViewer/ContainerTitle.vue +++ b/assets/components/LogViewer/ContainerTitle.vue @@ -1,6 +1,11 @@