diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d4779d..a5b62652 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add Slack slash command allowing to trigger a direct page via a manually created alert group +### Fixed + +- Removed duplicate API call, in the UI on plugin initial load, to `GET /api/internal/v1/alert_receive_channels` + ## v1.1.18 (2023-01-18) ### Added @@ -26,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Modified how the `Organization.is_rbac_permissions_enabled` flag is set, -based on whether we are dealing with an open-source, or cloud installation + based on whether we are dealing with an open-source, or cloud installation - Backend implementation to support direct user/schedule paging - Changed documentation links to open in new window - Remove helm chart signing diff --git a/grafana-plugin/src/state/rootBaseStore/index.ts b/grafana-plugin/src/state/rootBaseStore/index.ts index d2300dc0..3f936175 100644 --- a/grafana-plugin/src/state/rootBaseStore/index.ts +++ b/grafana-plugin/src/state/rootBaseStore/index.ts @@ -115,7 +115,6 @@ export class RootBaseStore { this.userStore.updateNotificationPolicyOptions(), this.userStore.updateNotifyByOptions(), this.alertReceiveChannelStore.updateAlertReceiveChannelOptions(), - this.alertReceiveChannelStore.updateAlertReceiveChannelOptions(), this.escalationPolicyStore.updateWebEscalationPolicyOptions(), this.escalationPolicyStore.updateEscalationPolicyOptions(), this.escalationPolicyStore.updateNumMinutesInWindowOptions(),