feat(gateways): Add Gateway detail page with connection status and agent listing

This commit is contained in:
Abhimanyu Saharan
2026-02-04 23:54:31 +05:30
parent 8452dc110e
commit 28bc773f72
4 changed files with 319 additions and 4 deletions

View File

@@ -119,14 +119,17 @@ export default function GatewaysPage() {
accessorKey: "name",
header: "Gateway",
cell: ({ row }) => (
<div>
<p className="text-sm font-medium text-slate-900">
<Link
href={`/gateways/${row.original.id}`}
className="group block"
>
<p className="text-sm font-medium text-slate-900 group-hover:text-blue-600">
{row.original.name}
</p>
<p className="text-xs text-slate-500">
{truncate(row.original.url, 36)}
</p>
</div>
</Link>
),
},
{