fix(ui): remove exchange ID, reorder to app/route, add agent label
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Has been cancelled
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 15:10:56 +01:00
parent eaeef6f0b2
commit 4e59b0bcd0
2 changed files with 10 additions and 3 deletions

View File

@@ -36,6 +36,14 @@
color: var(--text-muted);
}
.agentLabel {
font-size: 0.625rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-muted);
}
.duration {
margin-left: auto;
font-family: var(--font-mono);

View File

@@ -56,13 +56,12 @@ export function ExchangeHeader({ detail }: ExchangeHeaderProps) {
</>
)}
<span className={styles.separator} />
<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>
<span className={styles.route}>{detail.routeId}</span>
{detail.agentId && (
<>
<span className={styles.separator} />
<span className={styles.agentLabel}>Agent</span>
<MonoText size="xs">{detail.agentId}</MonoText>
</>
)}