From 6bdcbf840b0dc1bb84c8d0db5100a7b1af765c13 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Fri, 10 Apr 2026 11:52:45 +0200 Subject: [PATCH] fix: correct Logto admin console link to use port 3002 The Identity (Logto) link in the vendor sidebar pointed to /console which doesn't exist. The Logto admin console is served on port 3002 via a dedicated Traefik entrypoint. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/Layout.tsx b/ui/src/components/Layout.tsx index 23e8340..6081f61 100644 --- a/ui/src/components/Layout.tsx +++ b/ui/src/components/Layout.tsx @@ -76,7 +76,7 @@ export function Layout() {
window.open('/console', '_blank', 'noopener')} + onClick={() => window.open(`${window.location.protocol}//${window.location.hostname}:3002`, '_blank', 'noopener')} > Identity (Logto)