feat(task): display object_size

This commit is contained in:
zhangheng
2026-04-10 09:54:16 +08:00
parent 0115195811
commit 4c27c76f46
2 changed files with 32 additions and 0 deletions

View File

@@ -129,6 +129,14 @@ export default function PersonalTaskTable() {
)
},
},
{
accessor: "label_object_size.object_size",
title: "对象数",
width: 80,
render: (record: Task.SimpleTaskItem) => {
return <>{record.label_object_size?.object_size || "-"}</>
},
},
{
accessor: "label_status",
title: "状态",