🎨 搜索结果显示数 最小限制为 32 https://github.com/siyuan-note/siyuan/issues/7384

This commit is contained in:
Liang Ding 2023-02-16 15:12:33 +08:00
parent f4f08b1fcf
commit 5ca70f5195
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 5 additions and 2 deletions

View file

@ -209,8 +209,8 @@ func setSearch(c *gin.Context) {
return
}
if 1 > s.Limit {
s.Limit = 64
if 32 > s.Limit {
s.Limit = 32
}
oldCaseSensitive := model.Conf.Search.CaseSensitive