fix(ui): remove summary section from ExchangeHeader, keep only correlation chain
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 59s
CI / docker (push) Successful in 53s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 14:50:42 +01:00
parent 1ca4cac396
commit ef9d8c8066

View File

@@ -30,16 +30,10 @@ export function ExchangeHeader({ detail, onExchangeClick }: ExchangeHeaderProps)
const chain = chainResult?.data;
const showChain = chain && chain.length > 1;
if (!showChain) return null;
return (
<div className={styles.header}>
<div className={styles.summary}>
<StatusDot variant={statusVariant(detail.status)} />
<MonoText size="xs">{detail.exchangeId || detail.executionId}</MonoText>
<Badge label={detail.status === 'COMPLETED' ? 'OK' : detail.status} color={statusVariant(detail.status)} />
<span style={{ color: 'var(--text-muted)' }}>{detail.routeId}</span>
<span className={styles.duration}>{formatDuration(detail.durationMs)}</span>
</div>
{showChain && (
<div className={styles.chain}>
<span className={styles.chainLabel}>Correlated Exchanges</span>