Skip to content

Commit

Permalink
🐛 MTA-3209 fix effort on app-issues report. (#731)
Browse files Browse the repository at this point in the history
  • Loading branch information
jortel authored Jul 18, 2024
1 parent cddd0c8 commit fd9c5cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/analysis.go
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ func (h AnalysisHandler) IssueAppReports(ctx *gin.Context) {
"app.Name",
"app.Description",
"b.Name BusinessService",
"a.Effort",
"i.Effort",
"COUNT(n.ID) Incidents",
"COUNT(distinct n.File) Files",
"i.ID IssueID",
Expand Down Expand Up @@ -1350,7 +1350,7 @@ func (h AnalysisHandler) IssueAppReports(ctx *gin.Context) {
r.Name = m.Name
r.Description = m.Description
r.BusinessService = m.BusinessService
r.Effort = m.Effort
r.Effort = m.Effort * m.Incidents
r.Incidents = m.Incidents
r.Files = m.Files
r.Issue.ID = m.IssueID
Expand Down

0 comments on commit fd9c5cf

Please sign in to comment.