From 2dc9397eba8c1f3f4d5bc61343afee9d63db091a Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 16 Feb 2026 22:21:24 +0000 Subject: [PATCH] fix(dashboard): suppress empty state flash while workloads are loading The "No Proxmox VE nodes configured" message showed briefly on the Workloads page because the empty-state guard didn't wait for the workloads REST fetch to complete before deciding there were no guests. --- frontend-modern/src/components/Dashboard/Dashboard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx index 14053a8c3..78d7eacab 100644 --- a/frontend-modern/src/components/Dashboard/Dashboard.tsx +++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx @@ -1202,6 +1202,7 @@ export function Dashboard(props: DashboardProps) { when={ connected() && initialDataReceived() && + !workloads.loading() && props.nodes.length === 0 && allGuests().length === 0 }