From 15632a2170479edcb4028312732f16323cab831e Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 11:49:41 +0100 Subject: [PATCH] fix: show full exchange ID in breadcrumb Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/ExchangeDetail/ExchangeDetail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/ExchangeDetail/ExchangeDetail.tsx b/ui/src/pages/ExchangeDetail/ExchangeDetail.tsx index 841aa7cf..5af273c6 100644 --- a/ui/src/pages/ExchangeDetail/ExchangeDetail.tsx +++ b/ui/src/pages/ExchangeDetail/ExchangeDetail.tsx @@ -261,7 +261,7 @@ export default function ExchangeDetail() { { label: 'Applications', href: '/apps' }, { label: detail.applicationName || 'App', href: `/apps/${detail.applicationName}` }, { label: detail.routeId, href: `/apps/${detail.applicationName}/${detail.routeId}` }, - { label: detail.executionId?.slice(0, 12) || '' }, + { label: detail.executionId || '' }, ] : null, [detail?.applicationName, detail?.routeId, detail?.executionId]) useBreadcrumb(breadcrumbItems)