fix: harden admin and CMPP delivery workflows

This commit is contained in:
hectorzhao
2026-07-15 11:21:02 +08:00
parent 00b6d95752
commit e47432bc9d
34 changed files with 878 additions and 226 deletions
+2 -2
View File
@@ -349,12 +349,12 @@ export function AppShell({
<div className="notice-popover" role="menu">
<div className="notice-popover__header">
<strong></strong>
<span>{auditTotal} </span>
<span className={auditTotal === 0 ? 'is-zero' : ''}>{auditTotal} </span>
</div>
{auditNotifications.length ? auditNotifications.map((item) => (
<NavLink key={item.to} onClick={() => setNoticeOpen(false)} role="menuitem" to={item.to}>
<span>{item.label}</span>
<strong>{item.count}</strong>
<strong className={item.count === 0 ? 'is-zero' : ''}>{item.count}</strong>
</NavLink>
)) : <p></p>}
</div>