fix(ui): move agent ID before duration in exchange header
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 58s
CI / docker (push) Successful in 52s
CI / deploy-feature (push) Has been cancelled
CI / deploy (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 15:09:00 +01:00
parent 9f0c2e1225
commit eaeef6f0b2

View File

@@ -60,13 +60,13 @@ export function ExchangeHeader({ detail }: ExchangeHeaderProps) {
<span className={styles.separator} /> <span className={styles.separator} />
<span className={styles.route}>{detail.routeId}</span> <span className={styles.route}>{detail.routeId}</span>
<span className={styles.app}>{detail.applicationName}</span> <span className={styles.app}>{detail.applicationName}</span>
<span className={styles.duration}>{formatDuration(detail.durationMs)}</span>
{detail.agentId && ( {detail.agentId && (
<> <>
<span className={styles.separator} /> <span className={styles.separator} />
<MonoText size="xs">{detail.agentId}</MonoText> <MonoText size="xs">{detail.agentId}</MonoText>
</> </>
)} )}
<span className={styles.duration}>{formatDuration(detail.durationMs)}</span>
</div> </div>
{/* Correlation chain — only when multiple correlated exchanges exist */} {/* Correlation chain — only when multiple correlated exchanges exist */}