diff --git a/frontend-modern/src/components/Settings/HostAgents.tsx b/frontend-modern/src/components/Settings/HostAgents.tsx index fc26681..c8de952 100644 --- a/frontend-modern/src/components/Settings/HostAgents.tsx +++ b/frontend-modern/src/components/Settings/HostAgents.tsx @@ -20,21 +20,36 @@ interface HostAgentsProps { type HostPlatform = 'linux' | 'macos' | 'windows'; -const hostPlatformOptions: { id: HostPlatform; label: string; description: string }[] = [ +const hostPlatformOptions: { id: HostPlatform; label: string; description: string; icon: JSX.Element }[] = [ { id: 'linux', label: 'Linux', description: 'Download the static binary and enable the systemd service on Debian, Ubuntu, RHEL, Arch, and more.', + icon: ( + + + + ), }, { id: 'macos', label: 'macOS', description: 'Use the universal binary with launchd to keep desktops and hosts reporting in the background.', + icon: ( + + + + ), }, { id: 'windows', label: 'Windows', description: 'Native Windows service with automatic startup. PowerShell script handles binary download and service installation.', + icon: ( + + + + ), }, ]; @@ -331,7 +346,7 @@ export const HostAgents: Component = (props) => { return ( );