Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2023-12-18 21:26:17 +08:00
commit 1d3d71295a

View file

@ -1766,7 +1766,10 @@ func UpdateAttributeViewCell(tx *Transaction, avID, keyID, rowID, cellID string,
}
var val *av.Value
oldIsDetached := blockVal.IsDetached
oldIsDetached := true
if nil != blockVal {
oldIsDetached = blockVal.IsDetached
}
for _, keyValues := range attrView.KeyValues {
if keyID != keyValues.Key.ID {
continue