Skip to content

Commit

Permalink
🐛 Fix business service filter of issues. (konveyor#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
jortel authored and aufi committed Oct 30, 2023
1 parent 20a0875 commit bf0d473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/analysis.go
Original file line number Diff line number Diff line change
Expand Up @@ -1652,7 +1652,7 @@ func (h *AnalysisHandler) appIDs(ctx *gin.Context, f qf.Filter) (q *gorm.DB) {
iq = iq.Model(&model.BusinessService{})
iq = iq.Select("ID")
iq = bsFilter.Where(iq)
q = q.Where("ID IN (?)", iq)
q = q.Where("BusinessServiceID IN (?)", iq)
return
}
return
Expand Down

0 comments on commit bf0d473

Please sign in to comment.