From 5f774c30d5da39b9289d9bd1852c8cc24e34f317 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 23 Mar 2022 16:24:53 -0700 Subject: [PATCH] applicationLink should not be based on app state --- src/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/index.js b/src/js/index.js index e4d86aab3..a5237cffe 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -149,7 +149,7 @@ app.filter('applicationLink', function() { return function(app) { if (!app) return ''; - if (app.installationState === ISTATES.INSTALLED && app.health === HSTATES.HEALTHY && app.runState === RSTATES.RUNNING && !app.pendingPostInstallConfirmation) { + if (!app.pendingPostInstallConfirmation) { return 'https://' + app.fqdn; } else { return '';