applicationLink should not be based on app state

This commit is contained in:
Girish Ramakrishnan
2022-03-23 16:24:53 -07:00
parent b62da8ba70
commit 5f774c30d5

View File

@@ -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 '';