mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-01 22:38:49 +01:00
🎨 The database supports adding view/field/option description https://github.com/siyuan-note/siyuan/issues/11053
This commit is contained in:
parent
d9bcb12c34
commit
9371c68ec9
5 changed files with 108 additions and 9 deletions
|
|
@ -216,6 +216,8 @@ func performTx(tx *Transaction) (ret *TxErr) {
|
|||
ret = tx.doSetAttrViewColumnPin(op)
|
||||
case "setAttrViewColIcon":
|
||||
ret = tx.doSetAttrViewColumnIcon(op)
|
||||
case "setAttrViewColDesc":
|
||||
ret = tx.doSetAttrViewColumnDesc(op)
|
||||
case "insertAttrViewBlock":
|
||||
ret = tx.doInsertAttrViewBlock(op)
|
||||
case "removeAttrViewBlock":
|
||||
|
|
@ -240,6 +242,8 @@ func performTx(tx *Transaction) (ret *TxErr) {
|
|||
ret = tx.doRemoveAttrViewColOption(op)
|
||||
case "updateAttrViewColOption":
|
||||
ret = tx.doUpdateAttrViewColOption(op)
|
||||
case "setAttrViewColOptionDesc":
|
||||
ret = tx.doSetAttrViewColOptionDesc(op)
|
||||
case "setAttrViewColCalc":
|
||||
ret = tx.doSetAttrViewColCalc(op)
|
||||
case "updateAttrViewColNumberFormat":
|
||||
|
|
@ -256,6 +260,8 @@ func performTx(tx *Transaction) (ret *TxErr) {
|
|||
ret = tx.doSetAttrViewViewName(op)
|
||||
case "setAttrViewViewIcon":
|
||||
ret = tx.doSetAttrViewViewIcon(op)
|
||||
case "setAttrViewViewDesc":
|
||||
ret = tx.doSetAttrViewViewDesc(op)
|
||||
case "duplicateAttrViewView":
|
||||
ret = tx.doDuplicateAttrViewView(op)
|
||||
case "sortAttrViewView":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue