From cae5e3b99f1c028747ba71ce1acbbf525c39ff92 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Wed, 29 Oct 2025 18:27:00 +0100 Subject: [PATCH] Update virtual-machines.tsx --- AppImage/components/virtual-machines.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx index 8de5cee..3226da2 100644 --- a/AppImage/components/virtual-machines.tsx +++ b/AppImage/components/virtual-machines.tsx @@ -859,12 +859,6 @@ export function VirtualMachines() { {lxcIP && ( IP: {lxcIP} - {/* Show +X more if there are multiple IPs */} - {vmDetails?.lxc_ip_info && vmDetails.lxc_ip_info.all_ips.length > 1 && ( - - +{vmDetails.lxc_ip_info.all_ips.length - 1} more - - )} )} Uptime: {formatUptime(vm.uptime)} @@ -1805,17 +1799,17 @@ export function VirtualMachines() { IP Addresses
- {/* Real IPs (green) */} + {/* Real IPs (green, without "Real" label) */} {vmDetails.lxc_ip_info.real_ips.map((ip, index) => ( - {ip} (Real) + {ip} ))} - {/* Docker bridge IPs (gray/yellow) */} + {/* Docker bridge IPs (yellow, with "Bridge" label) */} {vmDetails.lxc_ip_info.docker_ips.map((ip, index) => (