Fix:修复http协议下可以在概要节点上粘贴下级节点的问题

This commit is contained in:
街角小林
2024-11-20 18:31:30 +08:00
parent 7213348c12
commit 6ae5d244f1

View File

@@ -1551,6 +1551,8 @@ class Render {
return
}
this.activeNodeList.forEach(node => {
// 概要节点不允许添加下级节点
if (node.isGeneralization) return
node.setData({
expand: true
})