diff --git a/CHANGELOG.md b/CHANGELOG.md
index 89aebdcf..b26540f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
+- Cleaning of the name "Incident" ([704](https://github.com/grafana/oncall/pull/704))
+- Alert Group/Alert Groups naming polishing. All the names should be with capital letters
- Design polishing ([1290](https://github.com/grafana/oncall/pull/1290))
- Not showing contact details in User tooltip if User does not have edit/admin access
- Updated slack link account to redirect back to user profile instead of chatops
diff --git a/grafana-plugin/src/components/AlertTemplates/AlertTemplatesForm.tsx b/grafana-plugin/src/components/AlertTemplates/AlertTemplatesForm.tsx
index 873bdd57..ec175eec 100644
--- a/grafana-plugin/src/components/AlertTemplates/AlertTemplatesForm.tsx
+++ b/grafana-plugin/src/components/AlertTemplates/AlertTemplatesForm.tsx
@@ -231,7 +231,7 @@ const AlertTemplatesForm = (props: AlertTemplatesFormProps) => {
Please note that after changing the web title template new alert groups will be searchable by
- new title. Alert groups created before the template was changed will be still searchable by old
+ new title. Alert Groups created before the template was changed will be still searchable by old
title only.
- Matching Incidents
+ Matching Alert Groups
{isLoading ? (
diff --git a/grafana-plugin/src/pages/incident/Incident.tsx b/grafana-plugin/src/pages/incident/Incident.tsx
index a83b0b42..359e967a 100644
--- a/grafana-plugin/src/pages/incident/Incident.tsx
+++ b/grafana-plugin/src/pages/incident/Incident.tsx
@@ -126,7 +126,7 @@ class IncidentPage extends React.Component
if (!incident && !isNotFoundError && !isWrongTeamError) {
return (
-
+
);
}
@@ -139,10 +139,10 @@ class IncidentPage extends React.Component
404
- Incident not found
+ Alert group not found
@@ -250,7 +250,7 @@ class IncidentPage extends React.Component
)}
@@ -395,7 +395,10 @@ class IncidentPage extends React.Component
))}
-
+
diff --git a/grafana-plugin/src/pages/settings/tabs/MainSettings/MainSettings.tsx b/grafana-plugin/src/pages/settings/tabs/MainSettings/MainSettings.tsx
index 19f46837..ac778ce4 100644
--- a/grafana-plugin/src/pages/settings/tabs/MainSettings/MainSettings.tsx
+++ b/grafana-plugin/src/pages/settings/tabs/MainSettings/MainSettings.tsx
@@ -50,8 +50,8 @@ class SettingsPage extends React.Component