fix: 修复首页数据不一致 — 1)风险分布用去重数据 2)无工资数据时不估算社保 3)TaskCenter显示全部待办不再截取10条 4)修复dedupedTodos引用顺序

This commit is contained in:
selfrelease
2026-08-01 07:53:30 +08:00
parent aef45c066e
commit d64f9c41a6
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -102,8 +102,8 @@ export function TaskCenter() {
<span className="text-xs text-ink-400">({group.items.length})</span>
</div>
{/* 行动项列表 */}
<div className="space-y-1 ml-5">
{group.items.slice(0, 5).map((item) => (
<div className="space-y-1 ml-5 max-h-60 overflow-y-auto">
{group.items.map((item) => (
<Link
key={item.id}
to={item.link}