diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx
index b67fe351d..8cf0f5809 100644
--- a/frontend-modern/src/components/Dashboard/Dashboard.tsx
+++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx
@@ -63,10 +63,6 @@ export function Dashboard(props: DashboardProps) {
(storedGroupingMode === 'grouped' || storedGroupingMode === 'flat') ? storedGroupingMode : 'grouped'
);
- // Debug logging
- createEffect(() => {
- console.log('[Dashboard] Grouping mode:', groupingMode());
- });
const [showFilters, setShowFilters] = createSignal(
localStorage.getItem('dashboardShowFilters') !== null
@@ -699,6 +695,14 @@ export function Dashboard(props: DashboardProps) {
>
VMID {sortKey() === 'vmid' && (sortDirection() === 'asc' ? '▲' : '▼')}
+ handleSort('node')}
+ >
+ Node {sortKey() === 'node' && (sortDirection() === 'asc' ? '▲' : '▼')}
+
+