fix(governance): 修正 Agent 市場手機 chip 溢出
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user