mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 06:30:14 +01:00
🎨 No longer automatically fills the database view's filter condition values after copying and pasting the bound block https://github.com/siyuan-note/siyuan/issues/12294
Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
parent
079917633c
commit
3f3afb3347
2 changed files with 3 additions and 3 deletions
|
|
@ -996,7 +996,7 @@ func DuplicateDoc(tree *parse.Tree) {
|
|||
AddAttributeViewBlock(nil, []map[string]interface{}{{
|
||||
"id": n.ID,
|
||||
"isDetached": false,
|
||||
}}, avID, "", "", "", "", false, map[string]interface{}{})
|
||||
}}, avID, "", "", "", "", true, map[string]interface{}{})
|
||||
ReloadAttrView(avID)
|
||||
}
|
||||
return ast.WalkContinue
|
||||
|
|
|
|||
|
|
@ -1216,7 +1216,7 @@ func (tx *Transaction) doLargeInsert(previousID string) (ret *TxErr) {
|
|||
AddAttributeViewBlock(tx, []map[string]interface{}{{
|
||||
"id": insertedNode.ID,
|
||||
"isDetached": false,
|
||||
}}, avID, "", "", "", previousID, false, map[string]interface{}{})
|
||||
}}, avID, "", "", "", previousID, true, map[string]interface{}{})
|
||||
ReloadAttrView(avID)
|
||||
}
|
||||
|
||||
|
|
@ -1404,7 +1404,7 @@ func (tx *Transaction) doInsert(operation *Operation) (ret *TxErr) {
|
|||
AddAttributeViewBlock(tx, []map[string]interface{}{{
|
||||
"id": insertedNode.ID,
|
||||
"isDetached": false,
|
||||
}}, avID, "", "", "", previousID, false, map[string]interface{}{})
|
||||
}}, avID, "", "", "", previousID, true, map[string]interface{}{})
|
||||
ReloadAttrView(avID)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue