Skip to content

Commit a81a6c6

Browse files
ref(alerts): Minor adjustments to rule form helps (#18469)
"Choose an environment" doesn't say much. This updates the help text for the event selector to be more clear that it filters events `Note:` looks a bit strange in help, isn't help already a note?
1 parent 2b2b121 commit a81a6c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/static/sentry/app/views/settings/incidentRules/ruleConditionsForm.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class RuleConditionsForm extends React.PureComponent<Props, State> {
9494
<SelectField
9595
name="environment"
9696
label={t('Environment')}
97-
help={t('Select an environment')}
97+
help={t('Choose which environment events must match')}
9898
placeholder={t('All environments')}
9999
choices={
100100
defined(this.state.environments)
@@ -112,7 +112,7 @@ class RuleConditionsForm extends React.PureComponent<Props, State> {
112112
name="query"
113113
label={t('Filter')}
114114
placeholder="error.type:TypeError"
115-
help={tct(`Note: A filter of [filter] is automatically applied`, {
115+
help={tct(`By default a filter of [filter] is automatically applied`, {
116116
filter: <code>event.type:error</code>,
117117
})}
118118
>

0 commit comments

Comments
 (0)