Skip to content

Commit

Permalink
Merge pull request #1498 from Bidaya0/fix/dast_vul_filter-failed
Browse files Browse the repository at this point in the history
fix/dast_vul_filter-failed
  • Loading branch information
Bidaya0 authored Jun 7, 2023
2 parents 2c3bdf3 + e4f4b2d commit 2b8d263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dongtai_web/dast/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def summary(self, request):
if 'bind_project_id' in ser.validated_data:
q = q & Q(project_id=ser.validated_data['bind_project_id'])
if 'project_version_id' in ser.validated_data:
q = q & Q(project_id=ser.validated_data['project_version_id'])
q = q & Q(project_version_id=ser.validated_data['project_version_id'])
vul_level_info = IastDastIntegration.objects.filter(q).values(
'vul_level__name',
'vul_level_id').annotate(total=Count('vul_level_id')).all()
Expand Down

0 comments on commit 2b8d263

Please sign in to comment.