Browse Source

fix(workflow): Change Alert Rules empty text (#16783)

Updates text to read "Alert" instead of "Incident"
Billy Vong 5 years ago
parent
commit
5bad533c1b

+ 1 - 1
src/sentry/static/sentry/app/views/settings/incidentRules/list.tsx

@@ -122,7 +122,7 @@ class IncidentRulesList extends AsyncView<Props, State> {
             })}
 
           {!isLoading && isEmpty && (
-            <EmptyMessage>{t('No Incident rules have been created yet.')}</EmptyMessage>
+            <EmptyMessage>{t('No Alert Rules have been created yet.')}</EmptyMessage>
           )}
         </PanelBody>
       </Panel>