This commit is contained in:
Daniel 2025-08-09 20:39:12 +08:00
parent 51766ed0c0
commit 7b1b36d3ab
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 26 additions and 22 deletions

View file

@ -1010,7 +1010,7 @@ func syncDelete2AttributeView(node *ast.Node) (changedAvIDs []string) {
}
if changedAv {
regenAttrViewViewGroups(attrView, "force")
regenAttrViewGroups(attrView, "force")
av.SaveAttributeView(attrView)
changedAvIDs = append(changedAvIDs, avID)
}
@ -1571,7 +1571,7 @@ func upsertAvBlockRel(node *ast.Node) {
for _, avID := range affectedAvIDs {
attrView, _ := av.ParseAttributeView(avID)
if nil != attrView {
regenAttrViewViewGroups(attrView, "force")
regenAttrViewGroups(attrView, "force")
av.SaveAttributeView(attrView)
}