-
-
- Showing only backups from PBS server: {selectedPBSInstance()}
-
-
-
-
diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx
index 3a4e19260..3a542088a 100644
--- a/frontend-modern/src/components/Dashboard/Dashboard.tsx
+++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx
@@ -26,16 +26,6 @@ export function Dashboard(props: DashboardProps) {
const [search, setSearch] = createSignal('');
const [isSearchLocked, setIsSearchLocked] = createSignal(false);
- // Extract selected node from search term
- const selectedNode = createMemo(() => {
- const searchStr = search();
- const match = searchStr.match(/node:(\S+)/);
- if (match && props.nodes.some(node => node.name === match[1])) {
- return match[1];
- }
- return null;
- });
-
// Initialize from localStorage with proper type checking
const storedViewMode = localStorage.getItem('dashboardViewMode');
const [viewMode, setViewMode] = createSignal
(
@@ -330,21 +320,7 @@ export function Dashboard(props: DashboardProps) {
return (
{/* Node Summary Cards - Adaptive Layout */}
-
-
-
- Showing guests for node: {selectedNode()}
-
-
-
+
0}>
{/* Regular cards for 1-4 nodes */}