Skip to content

Commit

Permalink
remove duplicated risk accepted (DefectDojo#9419)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHernandez authored Jan 30, 2024
1 parent d1972f0 commit 69fcf95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dojo/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ def get_finding_filterset_fields(metrics=False, similar=False):
'is_mitigated',
'out_of_scope',
'false_p',
'risk_accepted',
'has_component',
'has_notes',
'file_path',
Expand Down Expand Up @@ -584,7 +583,7 @@ def was_accepted(self, qs, name):
None: (_('Either'), any),
1: (_('Yes'), accepted),
2: (_('No'), not_accepted),
3: (_('Was'), was_accepted),
3: (_('Expired'), was_accepted),
}

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit 69fcf95

Please sign in to comment.