fix(测试计划): 修复测试计划详情功能用例列表加载报错
This commit is contained in:
parent
b01add42c2
commit
541ee42928
|
@ -117,7 +117,7 @@
|
|||
});
|
||||
|
||||
function getTagContent(tag: { [x: string]: any }) {
|
||||
const tagContent = props.isStringTag ? tag : tag[props.nameKey];
|
||||
const tagContent = (props.isStringTag ? tag : tag[props.nameKey]) || '';
|
||||
if (props.showTable) {
|
||||
return tagContent.length > 16 ? characterLimit(tagContent, 9) : tagContent;
|
||||
}
|
||||
|
|
|
@ -349,6 +349,7 @@
|
|||
dataIndex: 'tags',
|
||||
showDrag: true,
|
||||
isTag: true,
|
||||
isStringTag: true,
|
||||
},
|
||||
{
|
||||
title: 'caseManagement.featureCase.tableColumnCreateTime',
|
||||
|
|
Loading…
Reference in New Issue