This commit is contained in:
Liang Ding 2023-03-03 10:52:52 +08:00
parent a78f0d4b78
commit b7f7df9c7e
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -112,6 +112,11 @@ func addAttributeViewBlock(blockID, avID string, tree *parse.Tree) (err error) {
return
}
if ast.NodeAttributeView == node.Type {
// 不能将一个属性视图拖拽到另一个属性视图中
return
}
block := sql.BuildBlockFromNode(node, tree)
if nil == block {
err = ErrBlockNotFound