fix:修复少量bug

This commit is contained in:
Phenom
2021-04-16 15:38:52 +08:00
parent 72fcf5394a
commit 0dcad0f117
18 changed files with 824 additions and 173 deletions
+2 -2
View File
@@ -96,8 +96,8 @@ export const Util = {
edges = Util.converterList(constructedData.link);
return {
nodes: nodes.map(item => item.props),
edges: edges.map(item => item.props)
nodes: nodes.map(item => item.cloneProps()),
edges: edges.map(item => item.cloneProps())
};
},