We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1332b39 commit 73df3abCopy full SHA for 73df3ab
modules/indexer/issues/dboptions.go
@@ -10,11 +10,12 @@ import (
10
11
func ToSearchOptions(keyword string, opts *issues_model.IssuesOptions) *SearchOptions {
12
searchOpt := &SearchOptions{
13
- Keyword: keyword,
14
- RepoIDs: opts.RepoIDs,
15
- AllPublic: false,
16
- IsPull: opts.IsPull,
17
- IsClosed: opts.IsClosed,
+ Keyword: keyword,
+ RepoIDs: opts.RepoIDs,
+ AllPublic: false,
+ IsPull: opts.IsPull,
+ IsClosed: opts.IsClosed,
18
+ IsFuzzyKeyword: true,
19
}
20
21
if len(opts.LabelIDs) == 1 && opts.LabelIDs[0] == 0 {
0 commit comments