From bba92b30a65987e699f0fb1870521495d7b08708 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Mon, 8 Apr 2024 20:23:18 +0800 Subject: [PATCH] :recycle: Improve outline loading mechanism https://github.com/siyuan-note/siyuan/issues/10884 --- kernel/model/transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/model/transaction.go b/kernel/model/transaction.go index 0bdd1f45d..5b739bc04 100644 --- a/kernel/model/transaction.go +++ b/kernel/model/transaction.go @@ -1315,7 +1315,7 @@ func (tx *Transaction) commit() (err error) { var sources []interface{} for _, op := range tx.DoOperations { - sources = append(sources, op.Action) + sources = append(sources, op) } util.PushSaveDoc(tree.ID, "tx", sources) }