From 15eca895fb796cc913248e7b994eb8cfae6c71ad Mon Sep 17 00:00:00 2001 From: MacRimi Date: Fri, 24 Oct 2025 23:28:10 +0200 Subject: [PATCH] Update virtual-machines.tsx --- AppImage/components/virtual-machines.tsx | 26 ++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx index 049b122..8accc7a 100644 --- a/AppImage/components/virtual-machines.tsx +++ b/AppImage/components/virtual-machines.tsx @@ -694,7 +694,7 @@ export function VirtualMachines() { {safeVMData.filter((vm) => vm.status === "stopped").length} Stopped -

Virtual machines configured

+

Virtual machines configured

@@ -738,7 +738,8 @@ export function VirtualMachines() { {/* Allocated RAM (configured) */}
-
+ {/* Layout para desktop (sin cambios) */} +
{totalAllocatedMemoryGB} GB
Allocated RAM
@@ -757,6 +758,27 @@ export function VirtualMachines() {
)}
+ + {/* Layout para móvil (44.0 GB y Allocated RAM en la misma línea, badge debajo) */} +
+
+
{totalAllocatedMemoryGB} GB
+
Allocated RAM
+
+ {physicalMemoryGB !== null && ( +
+ {isMemoryOvercommit ? ( + + Exceeds Physical + + ) : ( + + Within Limits + + )} +
+ )} +