🎨 Blocks in the bookmark panel display their name instead of content Fix https://github.com/siyuan-note/siyuan/issues/8514
This commit is contained in:
parent
8445fa73f2
commit
01f93d1687
1 changed files with 6 additions and 0 deletions
|
@ -166,6 +166,12 @@ func BuildBookmark() (ret *Bookmarks) {
|
|||
blocks := fromSQLBlocks(&sqlBlocks, "", 0)
|
||||
for _, block := range blocks {
|
||||
label := BookmarkLabel(block.IAL["bookmark"])
|
||||
|
||||
if "" != block.Name {
|
||||
// Blocks in the bookmark panel display their name instead of content https://github.com/siyuan-note/siyuan/issues/8514
|
||||
block.Content = block.Name
|
||||
}
|
||||
|
||||
if bs, ok := labelBlocks[label]; ok {
|
||||
bs = append(bs, block)
|
||||
labelBlocks[label] = bs
|
||||
|
|
Loading…
Add table
Reference in a new issue