From 251e98742559726c0e89ba7b2cf6919011f3c9ad Mon Sep 17 00:00:00 2001 From: Alexandr Cherepanov Date: Tue, 11 Jul 2023 18:24:11 +0600 Subject: [PATCH 1/2] fix: post to Telegram ChatOps channel option is not showing in the integrations page --- CHANGELOG.md | 7 +++++++ .../ExpandedIntegrationRouteDisplay.tsx | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6fd2a9d1d..ba0e8e207c 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 + +- Post to Telegram ChatOps channel option is not showing in the integrations page + by @alexintech ([#2498](https://github.com/grafana/oncall/pull/2498)) + ## v1.3.8 (2023-07-11) ### Added diff --git a/grafana-plugin/src/containers/IntegrationContainers/ExpandedIntegrationRouteDisplay/ExpandedIntegrationRouteDisplay.tsx b/grafana-plugin/src/containers/IntegrationContainers/ExpandedIntegrationRouteDisplay/ExpandedIntegrationRouteDisplay.tsx index 3f6b502559..3a27f4ad91 100644 --- a/grafana-plugin/src/containers/IntegrationContainers/ExpandedIntegrationRouteDisplay/ExpandedIntegrationRouteDisplay.tsx +++ b/grafana-plugin/src/containers/IntegrationContainers/ExpandedIntegrationRouteDisplay/ExpandedIntegrationRouteDisplay.tsx @@ -84,7 +84,7 @@ const ExpandedIntegrationRouteDisplay: React.FC { setIsLoading(true); - Promise.all([escalationChainStore.updateItems(), telegramChannelStore.updateItems()]).then(() => + Promise.all([escalationChainStore.updateItems(), telegramChannelStore.updateTelegramChannels()]).then(() => setIsLoading(false) ); }, []); From c9711fc4d54a519f26fe70a4d59e60319e41d368 Mon Sep 17 00:00:00 2001 From: Rares Mardare Date: Thu, 27 Jul 2023 16:29:38 +0300 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63630719b8..a3e491da28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove checks delaying plugin load and cause "Initializing plugin..." ([2624](https://github.com/grafana/oncall/pull/2624)) - Fix "Continue escalation if >X alerts per Y minutes" escalation step by @vadimkerr ([#2636](https://github.com/grafana/oncall/pull/2636)) +- Post to Telegram ChatOps channel option is not showing in the integrations page + by @alexintech ([#2498](https://github.com/grafana/oncall/pull/2498)) ## v1.3.17 (2023-07-25)