fix(awooop): 脫敏前台治理邊界文案
All checks were successful
Code Review / ai-code-review (push) Successful in 16s
CD Pipeline / tests (push) Successful in 1m36s
CD Pipeline / build-and-deploy (push) Successful in 4m4s
CD Pipeline / post-deploy-checks (push) Successful in 1m34s

This commit is contained in:
Your Name
2026-06-15 05:31:36 +08:00
parent 088aeb6a06
commit e1831e5d8f
13 changed files with 219 additions and 128 deletions

View File

@@ -8,6 +8,7 @@
import Link from 'next/link'
import { ArrowRight, ShieldCheck } from 'lucide-react'
import { useTranslations } from 'next-intl'
import { publicBoundaryText } from '@/lib/public-security-redaction'
const metrics = [
{ key: 'overall', value: '64%' },
@@ -197,7 +198,7 @@ export function IwoooSReadOnlyBridge({ variant = 'light' }: IwoooSReadOnlyBridge
<div style={{ display: 'grid', gap: 5 }}>
{boundaries.map(boundary => (
<code key={boundary} style={{ fontSize: 11, color: primaryText, wordBreak: 'break-word' }}>
{boundary}
{publicBoundaryText(boundary)}
</code>
))}
</div>