diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx index eb22140..9a0fd49 100644 --- a/AppImage/components/virtual-machines.tsx +++ b/AppImage/components/virtual-machines.tsx @@ -124,7 +124,6 @@ interface VMDetails extends VMData { gpu_passthrough?: string[] devices?: string[] } - lxc_ip?: string lxc_ip_info?: { all_ips: string[] real_ips: string[] @@ -1079,6 +1078,7 @@ export function VirtualMachines() { <> + {/* Desktop layout: Uptime now appears after status badge */}
@@ -1095,15 +1095,16 @@ export function VirtualMachines() { {selectedVM.status.toUpperCase()} + {selectedVM.status === "running" && ( + + Uptime: {formatUptime(selectedVM.uptime)} + + )}
- {selectedVM.status === "running" && ( - - Uptime: {formatUptime(selectedVM.uptime)} - - )} )}
+ {/* Mobile layout unchanged */}