diff --git a/web/src/components/ui/scroll-area.tsx b/web/src/components/ui/scroll-area.tsx index e8f989ee2..2401118f9 100644 --- a/web/src/components/ui/scroll-area.tsx +++ b/web/src/components/ui/scroll-area.tsx @@ -13,6 +13,7 @@ const ScrollBar = React.forwardRef< ref={ref} orientation={orientation} className={cn( + 'z-[100]', 'flex touch-none select-none transition-colors', orientation === 'vertical' && 'h-full w-2.5 border-l border-l-transparent p-[1px]', @@ -22,7 +23,7 @@ const ScrollBar = React.forwardRef< )} {...props} > - + )); ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName; diff --git a/web/src/locales/en.ts b/web/src/locales/en.ts index 5020118c6..1f3d39ce2 100644 --- a/web/src/locales/en.ts +++ b/web/src/locales/en.ts @@ -1980,6 +1980,10 @@ Important structured information may include: names, dates, locations, events, k deleteRole: 'Delete role', deleteRoleConfirmation: 'Are you sure you want to delete this role? This action cannot be undone.', + + alive: 'Alive', + timeout: 'Timeout', + fail: 'Fail', }, }, }; diff --git a/web/src/pages/admin/monitoring.tsx b/web/src/pages/admin/monitoring.tsx index 36ab16aaa..1106f2035 100644 --- a/web/src/pages/admin/monitoring.tsx +++ b/web/src/pages/admin/monitoring.tsx @@ -1,8 +1,11 @@ +import Spotlight from '@/components/spotlight'; import { Card, CardContent } from '@/components/ui/card'; function AdminMonitoring() { return ( - + + +