🐛 编辑器中输入 # 后标签搜索提示不全 Fix https://github.com/siyuan-note/siyuan/issues/7391

This commit is contained in:
Liang Ding 2023-02-17 10:44:44 +08:00
parent 8196052c0d
commit e08d621da7
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 21 additions and 7 deletions

View file

@ -205,7 +205,7 @@ func BuildGraph(query string) (boxID string, nodes []*GraphNode, links []*GraphL
}
func linkTagBlocks(blocks *[]*Block, nodes *[]*GraphNode, links *[]*GraphLink, p string, style map[string]string) {
tagSpans := sql.QueryTagSpans(p, 1024)
tagSpans := sql.QueryTagSpans(p)
if 1 > len(tagSpans) {
return
}