feat(FN-3296): tokenize health reason typography in agent detail
Fixed health reason display in the Agent Detail view by tokenizing its typography to align with the design system's font token standards, updating the component's CSS and TypeScript files. Fusion-Task-Id: FN-3296
This commit is contained in:
@@ -309,6 +309,11 @@
|
||||
gap: var(--space-xs);
|
||||
}
|
||||
|
||||
.dashboard-summary-health-reason {
|
||||
margin-left: var(--space-xs);
|
||||
font-size: var(--space-md);
|
||||
}
|
||||
|
||||
.runs-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
@@ -886,7 +886,7 @@ function DashboardTab({
|
||||
</div>
|
||||
<div>
|
||||
<p className="dashboard-summary-label">Status</p>
|
||||
<p className="dashboard-summary-health-row"><span className={cn("status-dot", agent.state === "running" && "status-dot--running")} />{health.label}{health.reason && <span className="text-secondary" style={{ marginLeft: 'var(--space-xs)', fontSize: '12px' }} title={health.reason}>({health.reason})</span>}</p>
|
||||
<p className="dashboard-summary-health-row"><span className={cn("status-dot", agent.state === "running" && "status-dot--running")} />{health.label}{health.reason && <span className="text-secondary dashboard-summary-health-reason" title={health.reason}>({health.reason})</span>}</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user