diff --git a/frontend/src/scenes/dashboard/dashboardLogic.tsx b/frontend/src/scenes/dashboard/dashboardLogic.tsx index f3856bc674fb6..4d6fe7d96c9eb 100644 --- a/frontend/src/scenes/dashboard/dashboardLogic.tsx +++ b/frontend/src/scenes/dashboard/dashboardLogic.tsx @@ -655,7 +655,7 @@ export const dashboardLogic = kea([ itemsLoading: [ (s) => [s.dashboardLoading, s.refreshStatus], (dashboardLoading, refreshStatus) => { - return dashboardLoading || Object.values(refreshStatus).some((s) => s.loading) + return dashboardLoading || Object.values(refreshStatus).some((s) => s.loading || s.queued) }, ], isRefreshingQueued: [(s) => [s.refreshStatus], (refreshStatus) => (id: string) => !!refreshStatus[id]?.queued],