From 63c3d39c7e3d2868349ab0707483a872e60a87f7 Mon Sep 17 00:00:00 2001 From: Mia Wong Date: Mon, 29 Jul 2024 11:24:33 -0400 Subject: [PATCH] Fetch available updates after uploading a new airgap version (#4781) --- web/src/components/apps/AppVersionHistory.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/components/apps/AppVersionHistory.tsx b/web/src/components/apps/AppVersionHistory.tsx index 96a5262d77..35126e5a69 100644 --- a/web/src/components/apps/AppVersionHistory.tsx +++ b/web/src/components/apps/AppVersionHistory.tsx @@ -1104,6 +1104,9 @@ class AppVersionHistory extends Component { this.props.outletContext.updateCallback(); } this.fetchKotsDownstreamHistory(); + if (this.props.outletContext.isEmbeddedCluster) { + this.fetchAvailableUpdates(); + } } else { this.setState({ checkingForUpdates: true,