Alerting: Change text on cloud AM email addresses for contact points (#68143)

pull/67102/head^2
Virginia Cepeda 2 years ago committed by GitHub
parent 26d33d8fd4
commit e1ff434917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/services/ngalert/notifier/channels_config/available_channels.go
  2. 7
      public/app/features/alerting/unified/utils/cloud-alertmanager-notifier-types.ts

@ -255,7 +255,7 @@ func GetAvailableNotifiers() []*NotifierPlugin {
},
{
Label: "Addresses",
Description: "You can enter multiple email addresses using a \";\" separator",
Description: "You can enter multiple email addresses using a \";\", \"\\n\" or \",\" separator",
Element: ElementTypeTextArea,
PropertyName: "addresses",
Required: true,

@ -77,7 +77,12 @@ export const cloudNotifierTypes: NotifierDTO[] = [
info: '',
heading: 'Email settings',
options: [
option('to', 'To', 'The email address to send notifications to.', { required: true }),
option(
'to',
'To',
'The email address to send notifications to. You can enter multiple addresses using a "," separator',
{ required: true }
),
option('from', 'From', 'The sender address.'),
option('smarthost', 'SMTP host', 'The SMTP host through which emails are sent.'),
option('hello', 'Hello', 'The hostname to identify to the SMTP server.'),

Loading…
Cancel
Save