diff --git a/CHANGELOG.md b/CHANGELOG.md index aa117ae4..1b50fa49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- Changed HTTP Endpoint to Email for inbound email integrations + ([#2816](https://github.com/grafana/oncall/issues/2816)) + ## v1.3.25 (2023-08-18) ### Changed diff --git a/grafana-plugin/src/components/IntegrationHowToConnect/IntegrationHowToConnect.tsx b/grafana-plugin/src/components/IntegrationHowToConnect/IntegrationHowToConnect.tsx index 7226e66f..ce63c5c2 100644 --- a/grafana-plugin/src/components/IntegrationHowToConnect/IntegrationHowToConnect.tsx +++ b/grafana-plugin/src/components/IntegrationHowToConnect/IntegrationHowToConnect.tsx @@ -27,7 +27,7 @@ const IntegrationHowToConnect: React.FC<{ id: AlertReceiveChannel['id'] }> = ({ switch (integration) { case 'direct_paging': return 'Manual'; - case 'email': + case 'inbound_email': return 'Inbound Email'; default: return 'HTTP Endpoint';