diff --git a/ee/tabby-ui/app/(dashboard)/system/components/worker-card.tsx b/ee/tabby-ui/app/(dashboard)/system/components/worker-card.tsx index d98b148c15ef..9a480148af9c 100644 --- a/ee/tabby-ui/app/(dashboard)/system/components/worker-card.tsx +++ b/ee/tabby-ui/app/(dashboard)/system/components/worker-card.tsx @@ -7,6 +7,12 @@ import { cn } from '@/lib/utils' import { Button } from '@/components/ui/button' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { + HoverCard, + HoverCardContent, + HoverCardTrigger +} from '@/components/ui/hover-card' +import { + IconCircleHelp, IconRotate, IconSpinner, IconSquareActivity @@ -232,7 +238,7 @@ function HealthInfoView({ errorMessage?: string className?: string }) { - const [{ data, fetching, stale }, reexecuteQuery] = useQuery({ + const [{ data, fetching, stale, error }, reexecuteQuery] = useQuery({ query: testModelConnectionQuery, variables: { backend @@ -254,9 +260,19 @@ function HealthInfoView({ {connected ? (
Connected
) : ( -