Browse Source

Fix bug when project board get open issue number (#17703) (#17726)

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
tags/v1.15.7
Lunny Xiao 4 years ago committed by GitHub
parent
commit
6f3596e33c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      models/project_issue.go

4
models/project_issue.go

@ -115,7 +115,9 @@ func (p *Project) NumClosedIssues() int {
func (p *Project) NumOpenIssues() int {
c, err := x.Table("project_issue").
Join("INNER", "issue", "project_issue.issue_id=issue.id").
Where("project_issue.project_id=? AND issue.is_closed=?", p.ID, false).Count("issue.id")
Where("project_issue.project_id=? AND issue.is_closed=?", p.ID, false).
Cols("issue_id").
Count()
if err != nil {
return 0
}

Loading…
Cancel
Save