fix: harden admin and CMPP delivery workflows
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user