fix: show full exchange ID in breadcrumb
All checks were successful
CI / build (push) Successful in 53s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 47s
CI / deploy (push) Successful in 35s
CI / deploy-feature (push) Has been skipped

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-26 11:49:41 +01:00
parent 479b67cd2d
commit 15632a2170

View File

@@ -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)