From 97e8de4976b3e767ef6a9e1273b8d3a1d2257371 Mon Sep 17 00:00:00 2001 From: Artem Zatsarynnyi Date: Thu, 31 Oct 2024 14:35:35 +0100 Subject: [PATCH] Fix the Dashboard URL --- status-app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status-app/index.js b/status-app/index.js index 09999ed..c03df7a 100755 --- a/status-app/index.js +++ b/status-app/index.js @@ -49,7 +49,7 @@ app.get('/', async function (req, res) { const dwName = process.env.DEVWORKSPACE_NAME; const title = dwName; const clusterConsoleURL = process.env.CLUSTER_CONSOLE_URL; - const dashboardURL = process.env.DASHBOARD_URL; + const dashboardURL = process.env.CHE_DASHBOARD_URL; // render the page from EJS template res.render('status', { title, ideFullName, dwNamespace, dwName, clusterConsoleURL, invitationLink, dashboardURL }); });