From 1be47d94fb420b17df961a7d2f10eca65c60b41d Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Wed, 18 Mar 2026 11:21:22 -0500 Subject: [PATCH] feat(config): make device hostnames clickable in batch config Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/config/BatchConfigPanel.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/config/BatchConfigPanel.tsx b/frontend/src/components/config/BatchConfigPanel.tsx index bb0ea63..cccd7b5 100644 --- a/frontend/src/components/config/BatchConfigPanel.tsx +++ b/frontend/src/components/config/BatchConfigPanel.tsx @@ -40,6 +40,7 @@ import { import { toast } from '@/components/ui/toast' import { cn } from '@/lib/utils' import { TableSkeleton } from '@/components/ui/page-skeleton' +import { DeviceLink } from '@/components/ui/device-link' // --------------------------------------------------------------------------- // Types @@ -241,7 +242,9 @@ function DeviceSelector({ aria-label={`Select ${device.hostname}`} /> - {device.hostname} + + {device.hostname} + {device.ip_address} {execStates.map((state) => ( - {state.hostname} + + {state.hostname} + {state.ipAddress} @@ -848,6 +855,7 @@ export function BatchConfigPanel({ tenantId }: BatchConfigPanelProps) { {step === 3 && batchChange && (