diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index ecc5978..14bae83 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -157,6 +157,25 @@ export function ProxmoxDashboard() { } }, [systemStatus.status]) + const getActiveTabLabel = () => { + switch (activeTab) { + case "overview": + return "Overview" + case "storage": + return "Storage" + case "network": + return "Network" + case "vms": + return "Virtual Machines" + case "hardware": + return "Hardware" + case "logs": + return "System Logs" + default: + return "Navigation Menu" + } + } + return (