Skip to content

Commit

Permalink
fix: post to Telegram ChatOps channel option is not showing in the in…
Browse files Browse the repository at this point in the history
…tegration page (#2498)

# What this PR does
Fix Post to Telegram ChatOps channel option is not showing in the
integration page.

Problem has been introduced by [this
PR](https://github.com/grafana/oncall/pull/2147/files)

## Which issue(s) this PR fixes
closes #2486

## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [ ] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)

---------

Co-authored-by: Rares Mardare <rares.mardare@grafana.com>
  • Loading branch information
alexintech and teodosii authored Jul 27, 2023
1 parent be303a7 commit 7194a18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const ExpandedIntegrationRouteDisplay: React.FC<ExpandedIntegrationRouteDisplayP

useEffect(() => {
setIsLoading(true);
Promise.all([escalationChainStore.updateItems(), telegramChannelStore.updateItems()]).then(() =>
Promise.all([escalationChainStore.updateItems(), telegramChannelStore.updateTelegramChannels()]).then(() =>
setIsLoading(false)
);
}, []);
Expand Down

0 comments on commit 7194a18

Please sign in to comment.