🎨 Auto verify the database name when clicking the block superscript icon https://github.com/siyuan-note/siyuan/issues/10861

This commit is contained in:
Daniel 2024-04-03 21:17:54 +08:00
parent 193993d110
commit be67ffa288
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -289,6 +289,13 @@ func GetBlockAttributeViewKeys(blockID string) (ret []*BlockAttributeViewKeys) {
return
}
if !attrView.ExistBlock(blockID) {
// 比如剪切后粘贴,块 ID 会变,但是属性还在块上,这里做一次数据订正
// Auto verify the database name when clicking the block superscript icon https://github.com/siyuan-note/siyuan/issues/10861
unbindBlockAv(nil, avID, blockID)
return
}
var keyValues []*av.KeyValues
for _, kv := range attrView.KeyValues {
kValues := &av.KeyValues{Key: kv.Key}