🎨 Improve database block text in breadcrumbs https://github.com/siyuan-note/siyuan/issues/10891

This commit is contained in:
Daniel 2024-04-05 23:04:43 +08:00
parent 4f6a2e750f
commit 1d2516afb9
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 3 additions and 24 deletions

View file

@ -2943,12 +2943,12 @@ func UpdateAttributeViewCell(tx *Transaction, avID, keyID, rowID, cellID string,
// 将游离行绑定到新建的块上
bindBlockAv(tx, avID, rowID)
}
} else { // 之前绑定了块
} else { // 之前绑定了块
if isUpdatingBlockKey { // 正在更新主键
if val.IsDetached { // 现在是游离行
// 将绑定的块从属性视图中移除
unbindBlockAv(tx, avID, rowID)
} else { // 现在绑定了块
} else { // 现在绑定了块
if oldBoundBlockID != val.BlockID { // 之前绑定的块和现在绑定的块不一样
// 换绑块
unbindBlockAv(tx, avID, oldBoundBlockID)