dashboard: preserve app link paths

This commit is contained in:
Johannes Zellner
2024-03-18 11:39:50 +01:00
parent 49941a34b9
commit 4e618540f8

View File

@@ -2216,7 +2216,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
// amend properties to mimick full app
data.applinks.forEach(function (applink) {
applink.type = APP_TYPES.LINK;
applink.fqdn = new URL(applink.upstreamUri).hostname;
applink.fqdn = applink.upstreamUri;
applink.manifest = { addons: {}};
applink.installationState = ISTATES.INSTALLED;
applink.runState = RSTATES.RUNNING;