From 5e85d895b3e10900e9c5034898950b696f900b8a Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 29 Oct 2025 16:01:31 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/16233 https://github.com/siyuan-note/siyuan/issues/16121 Signed-off-by: Daniel <845765@qq.com> --- kernel/model/outline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/model/outline.go b/kernel/model/outline.go index 866090113..4003fb55f 100644 --- a/kernel/model/outline.go +++ b/kernel/model/outline.go @@ -255,7 +255,7 @@ func Outline(rootID string, preview bool) (ret []*Path, err error) { // 先全部折叠,后面再根据展开 ID 列表展开对应标题 for _, p := range ret { for _, b := range p.Blocks { - b.Folded = false + b.Folded = true for _, c := range b.Children { walkChildren(c, []string{"expandNone"}) }