Hinzufügen einer Bedingung zum Entfernen von Komponenten aus der Ignorierliste

This commit is contained in:
Developer 02 2024-07-16 14:26:41 +02:00
parent 8bd7ab13d0
commit 9021291aef

View File

@ -85,7 +85,7 @@ Namespace Jobs.FinalizeDocument
Case ANNOTATION_TYPE_WIDGET
'Add form field values
Dim formFieldValue = oAnnotationData.formFieldValues.FirstOrDefault(Function(fv) fv.name = oAnnotation.id)
If formFieldValue IsNot Nothing Then
If formFieldValue IsNot Nothing AndAlso Not _ignoredLabels.Contains(formFieldValue.value) Then
AddFormFieldValue(oAnnotation, formFieldValue)
End If
End Select