From ccdb6ff2617dfe6a73368a9cf5547482a60eb248 Mon Sep 17 00:00:00 2001 From: Lauren <61048546+laurenashleigh@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:54:46 +0000 Subject: [PATCH] Alerting: Fix alert instances count display (#114965) Alerting: fix alert instances count display --- .../components/rules/RuleDetailsMatchingInstances.tsx | 9 +++++---- public/locales/en-US/grafana.json | 5 ++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/public/app/features/alerting/unified/components/rules/RuleDetailsMatchingInstances.tsx b/public/app/features/alerting/unified/components/rules/RuleDetailsMatchingInstances.tsx index b8162030af5..7a7e5d8b22c 100644 --- a/public/app/features/alerting/unified/components/rules/RuleDetailsMatchingInstances.tsx +++ b/public/app/features/alerting/unified/components/rules/RuleDetailsMatchingInstances.tsx @@ -44,20 +44,21 @@ interface ShowMoreInstancesProps { function ShowMoreInstances({ stats, onClick, href }: ShowMoreInstancesProps) { const styles = useStyles2(getStyles); + const { visibleItemsCount, totalItemsCount } = stats; return (