From 8e1239753746e5dd09dbd90551b2fa38dc40239e Mon Sep 17 00:00:00 2001 From: Rares Mardare Date: Mon, 13 Mar 2023 21:48:17 +0200 Subject: [PATCH] Quickfix for integrations (#1532) # What this PR does ## Which issue(s) this PR fixes ## Checklist - [ ] Tests updated - [ ] Documentation added - [ ] `CHANGELOG.md` updated --- grafana-plugin/src/pages/integrations/Integrations.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/src/pages/integrations/Integrations.tsx b/grafana-plugin/src/pages/integrations/Integrations.tsx index 26197e02..20dc0ca6 100644 --- a/grafana-plugin/src/pages/integrations/Integrations.tsx +++ b/grafana-plugin/src/pages/integrations/Integrations.tsx @@ -56,7 +56,7 @@ class Integrations extends React.Component private alertReceiveChannelTimerId: ReturnType; async componentDidMount() { - this.isMounted = false; + this.isMounted = true; this.update().then(() => this.parseQueryParams(true)); }