From 4e618540f8de00f8ce1fdf4e3c8cedf2ed891187 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 18 Mar 2024 11:39:50 +0100 Subject: [PATCH] dashboard: preserve app link paths --- dashboard/src/js/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/js/client.js b/dashboard/src/js/client.js index 22f5641b7..dc65f3dfe 100644 --- a/dashboard/src/js/client.js +++ b/dashboard/src/js/client.js @@ -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;