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 93ed7a0 commit 11754a1Copy full SHA for 11754a1
models/pull.go
@@ -609,7 +609,7 @@ func (pr *PullRequest) GetWorkInProgressPrefix() string {
609
}
610
611
for _, prefix := range setting.Repository.PullRequest.WorkInProgressPrefixes {
612
- if strings.HasPrefix(strings.ToUpper(pr.Issue.Title), prefix) {
+ if strings.HasPrefix(strings.ToUpper(pr.Issue.Title), strings.ToUpper(prefix)) {
613
return pr.Issue.Title[0:len(prefix)]
614
615
0 commit comments