Add initial support to add applinks
This commit is contained in:
@@ -149,7 +149,9 @@ app.filter('applicationLink', function () {
|
||||
if (!app) return '';
|
||||
|
||||
if (!app.pendingPostInstallConfirmation) {
|
||||
return 'https://' + app.fqdn;
|
||||
// app links have http already in the fqdn
|
||||
if (app.fqdn.indexOf('http') !== 0) return 'https://' + app.fqdn;
|
||||
else return app.fqdn;
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user