From e4c3022026694c4890aeb77dc91cec9d16313a69 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 22 Feb 2025 10:10:14 +0800 Subject: [PATCH] :art: Display reference counts after unfolding headings https://github.com/siyuan-note/siyuan/issues/14169 --- kernel/model/heading.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/model/heading.go b/kernel/model/heading.go index cc3111344..a6d2dedf9 100644 --- a/kernel/model/heading.go +++ b/kernel/model/heading.go @@ -112,6 +112,9 @@ func (tx *Transaction) doUnfoldHeading(operation *Operation) (ret *TxErr) { } sql.UpsertTreeQueue(tree) + // 展开折叠的标题后显示块引用计数 Display reference counts after unfolding headings https://github.com/siyuan-note/siyuan/issues/13618 + fillBlockRefCount(children) + luteEngine := NewLute() operation.RetData = renderBlockDOMByNodes(children, luteEngine) return