mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 15:10:12 +01:00
🎨 Rows non-bound in the database support Add to Database https://github.com/siyuan-note/siyuan/issues/11093
This commit is contained in:
parent
f96343ab83
commit
462d38e4e7
1 changed files with 3 additions and 3 deletions
|
|
@ -2193,7 +2193,7 @@ func AddAttributeViewBlock(tx *Transaction, srcs []map[string]interface{}, avID,
|
||||||
tree, loadErr = LoadTreeByBlockID(srcID)
|
tree, loadErr = LoadTreeByBlockID(srcID)
|
||||||
}
|
}
|
||||||
if nil != loadErr {
|
if nil != loadErr {
|
||||||
logging.LogErrorf("load tree [%s] failed: %s", srcID, err)
|
logging.LogErrorf("load tree [%s] failed: %s", srcID, loadErr)
|
||||||
return loadErr
|
return loadErr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -3166,12 +3166,12 @@ func UpdateAttributeViewCell(tx *Transaction, avID, keyID, rowID, cellID string,
|
||||||
// 将游离行绑定到新建的块上
|
// 将游离行绑定到新建的块上
|
||||||
bindBlockAv(tx, avID, rowID)
|
bindBlockAv(tx, avID, rowID)
|
||||||
}
|
}
|
||||||
} else { // 之前绑定了块
|
} else { // 之前绑定了块
|
||||||
if isUpdatingBlockKey { // 正在更新主键
|
if isUpdatingBlockKey { // 正在更新主键
|
||||||
if val.IsDetached { // 现在是游离行
|
if val.IsDetached { // 现在是游离行
|
||||||
// 将绑定的块从属性视图中移除
|
// 将绑定的块从属性视图中移除
|
||||||
unbindBlockAv(tx, avID, rowID)
|
unbindBlockAv(tx, avID, rowID)
|
||||||
} else { // 现在绑定了块
|
} else { // 现在绑定了块
|
||||||
if oldBoundBlockID != val.BlockID { // 之前绑定的块和现在绑定的块不一样
|
if oldBoundBlockID != val.BlockID { // 之前绑定的块和现在绑定的块不一样
|
||||||
// 换绑块
|
// 换绑块
|
||||||
unbindBlockAv(tx, avID, oldBoundBlockID)
|
unbindBlockAv(tx, avID, oldBoundBlockID)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue