From 4888e94b699b98bf987a1238973e7f022d64d638 Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Wed, 18 Mar 2026 11:22:15 -0500 Subject: [PATCH] feat(operations): make device hostnames clickable in bulk command wizard Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/operations/BulkCommandWizard.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/operations/BulkCommandWizard.tsx b/frontend/src/components/operations/BulkCommandWizard.tsx index 60254af..fc4159d 100644 --- a/frontend/src/components/operations/BulkCommandWizard.tsx +++ b/frontend/src/components/operations/BulkCommandWizard.tsx @@ -47,6 +47,7 @@ import { } from '@/components/ui/dialog' import { cn } from '@/lib/utils' import { TableSkeleton } from '@/components/ui/page-skeleton' +import { DeviceLink } from '@/components/ui/device-link' // --------------------------------------------------------------------------- // Types @@ -321,7 +322,7 @@ export function BulkCommandWizard({ tenantId }: BulkCommandWizardProps) { key={d.id} className="flex items-center justify-between px-3 py-1.5 text-xs border-b border-border/30 last:border-0" > - {d.hostname} + {d.hostname} {d.ip_address} @@ -358,7 +359,7 @@ export function BulkCommandWizard({ tenantId }: BulkCommandWizardProps) { >
- {r.hostname} + {r.hostname}
{r.ipAddress}