fix(web): 在 Alerts 顯示自動化資產沉澱
All checks were successful
Code Review / ai-code-review (push) Successful in 15s
CD Pipeline / tests (push) Successful in 1m37s
CD Pipeline / build-and-deploy (push) Successful in 4m38s
CD Pipeline / post-deploy-checks (push) Successful in 1m33s

This commit is contained in:
Your Name
2026-06-18 16:49:11 +08:00
parent fa771a9fc9
commit 10cd616797

View File

@@ -20,6 +20,7 @@ import {
AwoooPStatusChainPanel,
type AwoooPStatusChain,
} from '@/components/awooop/status-chain'
import { AwoooPAutomationAssetLedger } from '@/components/awooop/automation-asset-ledger'
import { IwoooSReadOnlyBridge } from '@/components/security/iwooos-read-only-bridge'
import { cn } from '@/lib/utils'
import { API_V1_URL } from '@/lib/config'
@@ -535,6 +536,10 @@ function FocusIncidentEvidencePanel({
</div>
</div>
<div className="border-t border-[#e0ddd4] bg-[#faf9f3] px-4 py-4">
<AwoooPAutomationAssetLedger chain={chain ?? null} className="max-w-full" />
</div>
<AwoooPStatusChainPanel chain={chain ?? null} compact className="border-x-0 border-b-0" />
</section>
)