remove duplicate call in UI to GET /alert_receive_channels (#1179)
# What this PR does Related to [this PR comment](https://github.com/grafana/oncall/pull/1164#discussion_r1082337697) from @maskin25 ## Which issue(s) this PR fixes **Before**  **After**  ## Checklist - [ ] Tests updated (N/A) - [ ] Documentation added (N/A) - [x] `CHANGELOG.md` updated
This commit is contained in:
parent
2b0abf018c
commit
5ef8b8c345
2 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue