Skip to content

Commit

Permalink
fix/dast_vul_filter-failed
Browse files Browse the repository at this point in the history
  • Loading branch information
Bidaya0 committed Jun 7, 2023
1 parent c1c3923 commit e4f4b2d
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 e4f4b2d

Please sign in to comment.