fix(ui): move agent ID before duration in exchange header
This commit is contained in:
@@ -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 */}
|
||||||
|
|||||||
Reference in New Issue
Block a user