From d06c580bbc279348c2bbf7a033d2ed1f09b21c4e Mon Sep 17 00:00:00 2001 From: MacRimi Date: Fri, 24 Oct 2025 17:17:14 +0200 Subject: [PATCH] Update AppImage --- AppImage/components/proxmox-dashboard.tsx | 3 --- AppImage/scripts/flask_server.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 9fec0b6..4ef1b1c 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -137,16 +137,13 @@ export function ProxmoxDashboard() { const currentScrollY = window.scrollY const delta = currentScrollY - lastPosition - // Siempre visible al principio if (currentScrollY < 50) { setShowNavigation(true) } - // Oculta en cuanto se detecta desplazamiento hacia abajo else if (delta > 2) { if (hideTimeout) clearTimeout(hideTimeout) hideTimeout = setTimeout(() => setShowNavigation(false), 20) } - // Muestra al mover un poco hacia arriba else if (delta < -2) { if (hideTimeout) clearTimeout(hideTimeout) setShowNavigation(true) diff --git a/AppImage/scripts/flask_server.py b/AppImage/scripts/flask_server.py index 548c59e..a422956 100644 --- a/AppImage/scripts/flask_server.py +++ b/AppImage/scripts/flask_server.py @@ -1516,7 +1516,7 @@ def get_network_info(): bond_info = get_bond_info(interface_name) interface_info['bond_mode'] = bond_info['mode'] interface_info['bond_slaves'] = bond_info['slaves'] - interface_info['bond_active_slave'] = bond_info['bond_active_slave'] + interface_info['bond_active_slave'] = bond_info['active_slave'] if interface_type == 'bridge': bridge_info = get_bridge_info(interface_name)