Skip to content

Commit

Permalink
Merge pull request #2382 from devtron-labs/fix/bulk-restart
Browse files Browse the repository at this point in the history
chore: short circuit appDetails check using isResourceBrowserView in getManifestResource
  • Loading branch information
Elessar1802 authored Jan 20, 2025
2 parents 01f8395 + 2a75f64 commit 78e4879
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const getManifestResource = (
selectedResource,
})

if (window._env_.FEATURE_CONFIG_DRIFT_ENABLE && getDesiredAndLiveManifest && ad.appType === AppType.DEVTRON_APP && !isResourceBrowserView) {
if (!isResourceBrowserView && window._env_.FEATURE_CONFIG_DRIFT_ENABLE && getDesiredAndLiveManifest && ad.appType === AppType.DEVTRON_APP) {
return getDesiredAndLiveManifest(requestData, signal)
}

Expand Down

0 comments on commit 78e4879

Please sign in to comment.