This commit is contained in:
Liang Ding 2023-03-02 18:57:20 +08:00
parent 3c52bf63a9
commit 5b46889de7
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 11 additions and 5 deletions

View file

@ -124,6 +124,13 @@ func addAttributeViewBlock(blockID, avID string, tree *parse.Tree) (err error) {
return
}
// 不允许重复添加相同的块到属性视图中
for _, row := range attrView.Rows {
if row[0].Value() == blockID {
return
}
}
var row []av.Cell
row = append(row, av.NewCellBlock(block.ID))
if 1 < len(attrView.Columns) {