From b1f03f83cf2a08082f0ef1c147a17efad87fb63d Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Mon, 31 Mar 2025 19:19:46 +0200 Subject: [PATCH] Improve rule state filter placeholder wording (#16361) Technically, we are not filtering by the state of a single rule, but by the whole rule group state (if even a single alert is firing within a group, filtering for "Pending" won't show the group, even if it has pending alerts). Signed-off-by: Julius Volz --- web/ui/mantine-ui/src/pages/AlertsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ui/mantine-ui/src/pages/AlertsPage.tsx b/web/ui/mantine-ui/src/pages/AlertsPage.tsx index a659bae2ab..afe3d3db90 100644 --- a/web/ui/mantine-ui/src/pages/AlertsPage.tsx +++ b/web/ui/mantine-ui/src/pages/AlertsPage.tsx @@ -427,7 +427,7 @@ export default function AlertsPage() { o as keyof typeof alertsPageData.globalCounts ] } - placeholder="Filter by rule state" + placeholder="Filter by rule group state" values={(stateFilter?.filter((v) => v !== null) as string[]) || []} onChange={(values) => setStateFilter(values)} />