fix(ui): show full exchange ID without truncation
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m1s
CI / docker (push) Successful in 52s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

This commit is contained in:
hsiegeln
2026-03-28 15:02:52 +01:00
parent a5ba684c7d
commit 4296d41cad

View File

@@ -46,7 +46,7 @@ export function ExchangeHeader({ detail }: ExchangeHeaderProps) {
<div className={styles.info}>
<StatusDot variant={statusVariant(detail.status)} />
<Badge label={statusLabel(detail.status)} color={statusVariant(detail.status)} />
<MonoText size="xs">{(detail.exchangeId || detail.executionId).slice(0, 16)}</MonoText>
<MonoText size="xs">{detail.exchangeId || detail.executionId}</MonoText>
<span className={styles.separator} />
<span className={styles.route}>{detail.routeId}</span>
<span className={styles.app}>{detail.applicationName}</span>