Commit edb427b6 by zhaochengxiang

bug fix

parent a34fbb71
......@@ -218,16 +218,14 @@ const AssetAction = (props) => {
const tableData = useMemo(() => {
if (metadataColumnList) {
const newMetadataColumnList = [];
metadataColumnList.filter(item => {
const newMetadataColumnList = metadataColumnList.filter(item => {
return (
!keyword
|| (item.name??'').indexOf(keyword)!==-1
|| (item.cnName??'').indexOf(keyword)!==-1
|| (item.businessRules??'').indexOf(keyword)!==-1
)
})
});
return paginate(newMetadataColumnList, pageNum, pageSize);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment