Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static/app/components/core/form/generatedFieldRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ export const FORM_FIELD_REGISTRY: Record<string, FormFieldDefinition> = {
name: 'alertsMemberWrite',
formId: 'organization-settings-form',
route: '/settings/organization/',
label: t('Let Members Create and Edit Alerts'),
label: t('Let Members Create and Edit Monitors and Alerts'),
hintText: t(
'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
'Allow members to create, edit, and delete monitors and alert rules by granting them the `alerts:write` scope.'
),
},
'organization-settings-form.attachmentsRole': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,16 +309,16 @@ function OrganizationMembershipSettingsBase({
confirm={value =>
value
? t(
'This will allow any members of your organization to create, edit, and delete alert rules in all projects. Do you want to continue?'
'This will allow any members of your organization to create, edit, and delete monitors and alert rules in all projects. Do you want to continue?'
)
: undefined
}
>
{field => (
<field.Layout.Row
label={t('Let Members Create and Edit Alerts')}
label={t('Let Members Create and Edit Monitors and Alerts')}
hintText={t(
'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
'Allow members to create, edit, and delete monitors and alert rules by granting them the `alerts:write` scope.'
)}
>
<field.Switch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,16 +206,16 @@ export function OrganizationMembershipSettingsForm({
confirm={value =>
value
? t(
'This will allow any members of your organization to create, edit, and delete alert rules in all projects. Do you want to continue?'
'This will allow any members of your organization to create, edit, and delete monitors and alert rules in all projects. Do you want to continue?'
)
: undefined
}
>
{field => (
<field.Layout.Row
label={t('Let Members Create and Edit Alerts')}
label={t('Let Members Create and Edit Monitors and Alerts')}
hintText={t(
'Allow members to create, edit, and delete alert rules by granting them the `alerts:write` scope.'
'Allow members to create, edit, and delete monitors and alert rules by granting them the `alerts:write` scope.'
)}
>
<field.Switch
Expand Down
Loading