release/2.16.1.2410.01

This commit is contained in:
lys 2024-10-23 09:51:02 +08:00
parent cfdc0cd5a0
commit 02ff34c202
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ const traverse = (arr, calcDetail) => {
return _.map(arr, item => {
if (!_.isEmpty(item.children)) {
return {
title: item.text, width: item.width + "px", ellipsis: true,
title: item.text, width: item.width + "px", ellipsis: true, calcDetail,
dataIndex: item.column, children: traverse(item.children, calcDetail),
fixed: item.fixed || false, dataType: item.dataType, align: "center"
};