From 98c45d92ce2cef4b332f600ea4b071fb5acdd9c8 Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Wed, 18 Mar 2026 11:24:41 -0500 Subject: [PATCH] feat(wireless): make device hostnames clickable in wireless page Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/routes/_authenticated/wireless.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/routes/_authenticated/wireless.tsx b/frontend/src/routes/_authenticated/wireless.tsx index f672a2f..6b8b88f 100644 --- a/frontend/src/routes/_authenticated/wireless.tsx +++ b/frontend/src/routes/_authenticated/wireless.tsx @@ -6,6 +6,7 @@ import { useAuth, isSuperAdmin } from '@/lib/auth' import { useUIStore } from '@/lib/store' import { Card, CardContent } from '@/components/ui/card' import { cn } from '@/lib/utils' +import { DeviceLink } from '@/components/ui/device-link' export const Route = createFileRoute('/_authenticated/wireless')({ component: WirelessPage, @@ -154,7 +155,11 @@ function WirelessPage() {
- {issue.hostname} + {tenantId && issue.device_id ? ( + + {issue.hostname} + + ) : issue.hostname}
{superAdmin && !tenantId && (