diff --git a/panel/src/app/(dashboard)/notifications/page.tsx b/panel/src/app/(dashboard)/notifications/page.tsx index c161bd3a..34f1c35f 100644 --- a/panel/src/app/(dashboard)/notifications/page.tsx +++ b/panel/src/app/(dashboard)/notifications/page.tsx @@ -17,6 +17,11 @@ import { Skeleton } from "@/components/ui/skeleton"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { OfflineState } from "@/components/ui/offline-state"; import { HelpTip } from "@/components/ui/help-tip"; +import { + Tooltip, + TooltipContent, + TooltipTrigger, +} from "@/components/ui/tooltip"; import { usePageRefresh } from "@/hooks"; import { Bell, @@ -114,20 +119,26 @@ function NotificationCard({
Show icons only in the sidebar
diff --git a/panel/src/components/business/company-scorecard-card.tsx b/panel/src/components/business/company-scorecard-card.tsx index 350fb710..2e56fac5 100644 --- a/panel/src/components/business/company-scorecard-card.tsx +++ b/panel/src/components/business/company-scorecard-card.tsx @@ -96,7 +96,9 @@ interface DeliverySectionProps { function DeliverySection({ delivery }: DeliverySectionProps) { return ({config.description} diff --git a/panel/src/components/knowledge-base/kb-category-view.tsx b/panel/src/components/knowledge-base/kb-category-view.tsx index f8e60dc9..b65f9119 100644 --- a/panel/src/components/knowledge-base/kb-category-view.tsx +++ b/panel/src/components/knowledge-base/kb-category-view.tsx @@ -86,14 +86,16 @@ function KBCategoryViewInner({ category }: { category: KBIndexType }) { {doc.source}
-- Updated {formatDistanceToNow(new Date(latestUpdated))} ago -
++ Updated {formatDistanceToNow(new Date(latestUpdated))} ago +
+- {health.healthy ? "Healthy" : "Unhealthy"} -
-- Embedding: {health.embedding_status} -
++ {health.healthy ? "Healthy" : "Unhealthy"} +
++ Embedding: {health.embedding_status} +
+{totalDocs}
-Documents
-{totalDocs}
++ Documents +
+{totalChunks}
@@ -667,14 +722,16 @@ function KnowledgeBaseBrowserContent() {