🎨 Supports multiple views for the database https://github.com/siyuan-note/siyuan/issues/9751

This commit is contained in:
Daniel 2023-12-01 09:48:20 +08:00
parent 5f04af1afe
commit 3f5e49cec6
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
5 changed files with 89 additions and 0 deletions

View file

@ -248,6 +248,10 @@ func performTx(tx *Transaction) (ret *TxErr) {
ret = tx.doRemoveAttrViewView(op)
case "setAttrViewViewName":
ret = tx.doSetAttrViewViewName(op)
case "setAttrViewViewIcon":
ret = tx.doSetAttrViewViewIcon(op)
case "duplicateAttrViewView":
ret = tx.doDuplicateAttrViewView(op)
}
if nil != ret {