diff --git a/grafana-plugin/src/pages/integration_2/Integration2.tsx b/grafana-plugin/src/pages/integration_2/Integration2.tsx index f7eb7103..abde4c6b 100644 --- a/grafana-plugin/src/pages/integration_2/Integration2.tsx +++ b/grafana-plugin/src/pages/integration_2/Integration2.tsx @@ -61,6 +61,7 @@ import { MaintenanceType } from 'models/maintenance/maintenance.types'; import { INTEGRATION_TEMPLATES_LIST } from 'pages/integration_2/Integration2.config'; import IntegrationHelper from 'pages/integration_2/Integration2.helper'; import styles from 'pages/integration_2/Integration2.module.scss'; +import { AppFeature } from 'state/features'; import { PageProps, SelectOption, WithStoreProps } from 'state/types'; import { useStore } from 'state/useStore'; import { withMobXProviderContext } from 'state/withStore'; @@ -119,9 +120,15 @@ class Integration2 extends React.Component } = this.props; const { - store: { alertReceiveChannelStore }, + store, + store: { alertReceiveChannelStore, telegramChannelStore }, } = this.props; + if (store.hasFeature(AppFeature.Telegram)) { + // workaround until we get the whole telegram data in response + telegramChannelStore.updateItems(); + } + if (query?.template) { this.openEditTemplateModal(query.template, query.routeId && query.routeId); } diff --git a/helm/oncall/Chart.yaml b/helm/oncall/Chart.yaml index e2afac05..787ee2d8 100644 --- a/helm/oncall/Chart.yaml +++ b/helm/oncall/Chart.yaml @@ -2,9 +2,8 @@ apiVersion: v2 name: oncall description: Developer-friendly incident response with brilliant Slack integration type: application -# version and appVersion are handled by CI, no need to change them manually -version: 1.2.41 -appVersion: v1.2.41 +version: 1.2.44 +appVersion: v1.2.44 dependencies: - name: cert-manager version: v1.8.0