From ed19a92a2a44ab506eabd42b90ac929f0367f201 Mon Sep 17 00:00:00 2001 From: Lauren <61048546+laurenashleigh@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:48:20 +0000 Subject: [PATCH] Alerting: Fix to prevent regex escape on search input query (#113734) prevent regex escape on search input query --- .../alerting/unified/rule-list/filter/RulesFilter.v2.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx b/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx index 7bdc105496b..70ed636bb7a 100644 --- a/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx +++ b/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx @@ -162,6 +162,7 @@ export default function RulesFilter({ viewMode, onViewModeChange }: RulesFilterP 'Search by name or enter filter query...' )} name="searchQuery" + escapeRegex={false} onChange={(next) => { trackRulesSearchInputCleared(field.value, next); field.onChange(next);