Commit ee848349 by zhaochengxiang

元数据要素关联问题

parent 12e2d843
......@@ -124,7 +124,10 @@ const AttributeRelationModal = (props) => {
let newRels = [];
for (var key in row) {
newRels.push({ elementId: key, attrName: row[key]||'' });
if ((row[key]||'') !== '') {
newRels.push({ elementId: key, attrName: row[key]||'' });
}
}
setConfirmLoading(true);
......
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