Fixing PR442:

- Fixed:
    - UI design elemets
    - UI and button colors
    - JSON export
    - recent activity is default again
- Removed:
    - Online/Offline UI labels
    - left-click menu on hosts
- Added:
    - small pulsing dot inside the hosts to indicate online status like in the left bar
This commit is contained in:
Steven Josefs
2025-12-30 18:20:57 +01:00
parent 8106999d1e
commit 0216a2d2fe
4 changed files with 257 additions and 93 deletions

View File

@@ -89,7 +89,7 @@ export function Dashboard({
Array<{ id: number; name: string; cpu: number | null; ram: number | null }>
>([]);
const [serverStatsLoading, setServerStatsLoading] = useState<boolean>(true);
const [showNetworkGraph, setShowNetworkGraph] = useState<boolean>(true);
const [showNetworkGraph, setShowNetworkGraph] = useState<boolean>(false);
const { addTab, setCurrentTab, tabs: tabList, updateTab } = useTabs();