🎨 Fixed mirroring database display view https://github.com/siyuan-note/siyuan/issues/15279

This commit is contained in:
Daniel 2025-07-16 22:30:40 +08:00
parent 5fc90d284c
commit 3ff2829c45
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -1176,7 +1176,15 @@ func (tx *Transaction) doInsert(operation *Operation) (ret *TxErr) {
v := attrView.GetView(attrView.ViewID)
if nil != v {
insertedNode.AttributeViewType = string(v.LayoutType)
insertedNode.SetIALAttr(av.NodeAttrView, v.ID)
attrs := parse.IAL2Map(insertedNode.KramdownIAL)
if "" == attrs[av.NodeAttrView] {
attrs[av.NodeAttrView] = v.ID
err = setNodeAttrs(insertedNode, tree, attrs)
if err != nil {
logging.LogWarnf("set node [%s] attrs failed: %s", operation.BlockID, err)
return
}
}
}
}
}