From 39d647c947debd864b25cf48779d5ed93b7d87f5 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 19 Jan 2026 23:19:24 +0000 Subject: [PATCH] fix: show node summary table in kiosk mode The UnifiedNodeSelector is the main dashboard content that users want to display on wall-mounted screens. Only the filter/search UI should be hidden in kiosk mode, not the actual data tables. --- .../src/components/Dashboard/Dashboard.tsx | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx index 2ca11cece..4983e2d76 100644 --- a/frontend-modern/src/components/Dashboard/Dashboard.tsx +++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx @@ -960,18 +960,16 @@ export function Dashboard(props: DashboardProps) { - {/* Unified Node Selector - hidden in kiosk mode */} - - g.type === 'qemu')} - filteredContainers={filteredGuests().filter((g) => g.type === 'lxc' || g.type === 'oci')} - searchTerm={search()} - /> - + {/* Unified Node Selector - always visible (this is the main dashboard content) */} + g.type === 'qemu')} + filteredContainers={filteredGuests().filter((g) => g.type === 'lxc' || g.type === 'oci')} + searchTerm={search()} + /> {/* Dashboard Filter - hidden in kiosk mode */}