fix(governance): 修正 Agent 市場手機 chip 溢出
All checks were successful
Code Review / ai-code-review (push) Successful in 14s
CD Pipeline / tests (push) Successful in 1m43s
CD Pipeline / build-and-deploy (push) Successful in 4m56s
CD Pipeline / post-deploy-checks (push) Successful in 1m38s

This commit is contained in:
Your Name
2026-06-25 14:41:52 +08:00
parent ffc632433e
commit 0ade2dd19f

View File

@@ -94,11 +94,13 @@ function CandidatePill({ value, muted = false }: { value: string; muted?: boolea
fontFamily: "'DM Mono', monospace", fontFamily: "'DM Mono', monospace",
fontSize: 10, fontSize: 10,
lineHeight: 1.3, lineHeight: 1.3,
minWidth: 0,
maxWidth: '100%', maxWidth: '100%',
overflowX: 'auto', overflowX: 'hidden',
overflowY: 'hidden', overflowY: 'hidden',
overflowWrap: 'normal', overflowWrap: 'anywhere',
whiteSpace: 'nowrap', wordBreak: 'break-word',
whiteSpace: 'normal',
}}> }}>
{value} {value}
</span> </span>
@@ -594,7 +596,7 @@ export function AgentMarketTab() {
{t('technologyRadar.title')} {t('technologyRadar.title')}
</span> </span>
</div> </div>
<div style={{ display: 'flex', flexWrap: 'wrap', gap: 6, justifyContent: 'flex-end' }}> <div style={{ display: 'flex', flexWrap: 'wrap', gap: 6, justifyContent: 'flex-end', minWidth: 0, maxWidth: '100%' }}>
<CandidatePill value={technologyRadar.report_contract.schedule_workflow} /> <CandidatePill value={technologyRadar.report_contract.schedule_workflow} />
<CandidatePill value={technologyRadar.report_contract.schedule_cron_utc} muted /> <CandidatePill value={technologyRadar.report_contract.schedule_cron_utc} muted />
</div> </div>
@@ -643,7 +645,7 @@ export function AgentMarketTab() {
{t('technologyReports.title')} {t('technologyReports.title')}
</span> </span>
</div> </div>
<div style={{ display: 'flex', flexWrap: 'wrap', gap: 6, justifyContent: 'flex-end' }}> <div style={{ display: 'flex', flexWrap: 'wrap', gap: 6, justifyContent: 'flex-end', minWidth: 0, maxWidth: '100%' }}>
<CandidatePill value={technologyReportCadence.report_contract.api_endpoint} /> <CandidatePill value={technologyReportCadence.report_contract.api_endpoint} />
<CandidatePill value={technologyReportCadence.telegram_report_bridge.integration_status} muted /> <CandidatePill value={technologyReportCadence.telegram_report_bridge.integration_status} muted />
</div> </div>