From 8c0e09cc2d1a3ed8122b3cd8383a2178842645bd Mon Sep 17 00:00:00 2001 From: laurenashleigh Date: Tue, 21 Oct 2025 16:19:05 +0100 Subject: [PATCH] add notification section to panel --- .../components/AlertRuleDrawerForm.tsx | 3 + .../components/RuleNotificationSection.tsx | 134 ++++++++++++++++++ .../contactPoint/ContactPointSelector.tsx | 2 +- 3 files changed, 138 insertions(+), 1 deletion(-) create mode 100644 public/app/features/alerting/unified/components/RuleNotificationSection.tsx diff --git a/public/app/features/alerting/unified/components/AlertRuleDrawerForm.tsx b/public/app/features/alerting/unified/components/AlertRuleDrawerForm.tsx index 001ec34bfc0..c72b2a5feeb 100644 --- a/public/app/features/alerting/unified/components/AlertRuleDrawerForm.tsx +++ b/public/app/features/alerting/unified/components/AlertRuleDrawerForm.tsx @@ -10,6 +10,7 @@ import { getDefaultFormValues } from '../rule-editor/formDefaults'; import { RuleFormType, RuleFormValues } from '../types/rule-form'; import { RuleConditionSection } from './RuleConditionSection'; +import { RuleNotificationSection } from './RuleNotificationSection'; export interface AlertRuleDrawerFormProps { isOpen: boolean; @@ -35,6 +36,8 @@ export function AlertRuleDrawerForm({ isOpen, onClose, title }: AlertRuleDrawerF