You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dojo/forms.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -559,13 +559,15 @@ class ImportScanForm(forms.Form):
559
559
# Exposing the choice as two different check boxes.
560
560
# If 'close_old_findings_product_scope' is selected, the backend will ensure that both flags are set.
561
561
close_old_findings=forms.BooleanField(help_text="Old findings no longer present in the new report get closed as mitigated when importing. "
562
-
"If service has been set, only the findings for this service will be closed. "
562
+
"If service has been set, only the findings for this service will be closed; "
563
+
"if no service is set, only findings without a service will be closed. "
563
564
"This affects findings within the same engagement by default.",
564
565
label="Close old findings",
565
566
required=False,
566
567
initial=False)
567
568
close_old_findings_product_scope=forms.BooleanField(help_text="Old findings no longer present in the new report get closed as mitigated when importing. "
568
-
"If service has been set, only the findings for this service will be closed. "
569
+
"If service has been set, only the findings for this service will be closed; "
570
+
"if no service is set, only findings without a service will be closed. "
0 commit comments