-
+
+
{typeof content === 'string'
? content
diff --git a/web/src/pages/admin/service-status.tsx b/web/src/pages/admin/service-status.tsx
index 048e018dd..aaacd000d 100644
--- a/web/src/pages/admin/service-status.tsx
+++ b/web/src/pages/admin/service-status.tsx
@@ -15,17 +15,14 @@ import {
LucideClipboardList,
LucideDot,
LucideFilter,
- LucideSearch,
LucideSettings2,
} from 'lucide-react';
import { useQuery } from '@tanstack/react-query';
-import { cn } from '@/lib/utils';
-
import Spotlight from '@/components/spotlight';
import { TableEmpty } from '@/components/table-skeleton';
-import { Badge } from '@/components/ui/badge';
+import { Badge, BadgeProps } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import {
Card,
@@ -41,7 +38,7 @@ import {
DialogHeader,
DialogTitle,
} from '@/components/ui/dialog';
-import { Input } from '@/components/ui/input';
+import { SearchInput } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import {
Popover,
@@ -127,17 +124,17 @@ function AdminServiceStatus() {
}),
columnHelper.accessor('host', {
header: t('admin.host'),
- cell: ({ row }) => (
-
- {row.getValue('host')}
+ cell: ({ cell }) => (
+
+ {cell.getValue()}
),
}),
columnHelper.accessor('port', {
header: t('admin.port'),
- cell: ({ row }) => (
-
- {row.getValue('port')}
+ cell: ({ cell }) => (
+
+ {cell.getValue()}
),
}),
@@ -145,15 +142,14 @@ function AdminServiceStatus() {
header: t('admin.status'),
cell: ({ cell }) => (
{t(`admin.${cell.getValue()}`)}
@@ -165,7 +161,7 @@ function AdminServiceStatus() {
id: 'actions',
header: t('admin.actions'),
cell: ({ row }) => (
-
+