From 62cbe15f511cff02c0f68cae851e469faa368573 Mon Sep 17 00:00:00 2001 From: Gilles De Mey Date: Tue, 2 Sep 2025 17:24:54 +0200 Subject: [PATCH] Alerting: Hide list view loader if we don't have anything yet (#110464) --- .../alerting/unified/rule-list/PaginatedDataSourceLoader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/rule-list/PaginatedDataSourceLoader.tsx b/public/app/features/alerting/unified/rule-list/PaginatedDataSourceLoader.tsx index 76fc0c6bbec..49477571ce3 100644 --- a/public/app/features/alerting/unified/rule-list/PaginatedDataSourceLoader.tsx +++ b/public/app/features/alerting/unified/rule-list/PaginatedDataSourceLoader.tsx @@ -111,7 +111,7 @@ function PaginatedGroupsLoader({ rulesSourceIdentifier, application, groupFilter ))} ))} - {hasMoreGroups && ( + {hasMoreGroups && !hasNoRules && ( // this div will make the button not stretch