From 5659026959d71109e444c42adb7108bbbbe69362 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 7 Feb 2026 21:18:04 -0500 Subject: [PATCH] fix: add :80 port to dashboard proxy constant The POLARIS_DASHBOARD_PROXY constant was missing :80, causing dashboard links in the UI to fail with "no endpoints available". This matches the fix already applied to POLARIS_API_PATH. Fixes external dashboard link in namespace detail view. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- src/api/polaris.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/polaris.ts b/src/api/polaris.ts index 387ddaf..3f65fd7 100644 --- a/src/api/polaris.ts +++ b/src/api/polaris.ts @@ -146,7 +146,7 @@ export function setRefreshInterval(seconds: number): void { // --- Polaris dashboard proxy URL --- export const POLARIS_DASHBOARD_PROXY = - '/api/v1/namespaces/polaris/services/polaris-dashboard/proxy/'; + '/api/v1/namespaces/polaris/services/polaris-dashboard:80/proxy/'; // --- Score computation ---