feat(platform): expose capacity check findings

This commit is contained in:
lingniu
2026-07-04 08:58:40 +08:00
parent e29f8768ca
commit f651e48434
6 changed files with 69 additions and 5 deletions

View File

@@ -198,6 +198,15 @@ export function Quality({
</Card>
</Col>
</Row>
{health?.capacityFindings?.length ? (
<Card bordered title="容量检查发现" style={{ marginTop: 16 }}>
<Space wrap>
{health.capacityFindings.map((item) => (
<Tag key={item} color="orange">{item}</Tag>
))}
</Space>
</Card>
) : null}
{filterSummary.length > 0 ? (
<Card bordered title="当前筛选" style={{ marginTop: 16 }}>
<Space wrap>