mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-06 16:58:49 +01:00
🎨 Update av
This commit is contained in:
parent
bf96331cf6
commit
54799578d7
4 changed files with 70 additions and 5 deletions
|
|
@ -224,6 +224,8 @@ func performTx(tx *Transaction) (ret *TxErr) {
|
|||
ret = tx.doAddAttrViewColumn(op)
|
||||
case "removeAttrViewCol":
|
||||
ret = tx.doRemoveAttrViewColumn(op)
|
||||
case "updateAttrViewCell":
|
||||
ret = tx.doUpdateAttrViewCell(op)
|
||||
}
|
||||
|
||||
if nil != ret {
|
||||
|
|
@ -1026,6 +1028,7 @@ type Operation struct {
|
|||
SrcIDs []string `json:"srcIDs"` // 用于将块拖拽到属性视图中
|
||||
Name string `json:"name"` // 用于属性视图列名
|
||||
Typ string `json:"type"` // 用于属性视图列类型
|
||||
RowID string `json:"rowID"` // 用于属性视图行 ID
|
||||
|
||||
discard bool // 用于标识是否在事务合并中丢弃
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue