Manage different level of confidence in the submission

This commit is contained in:
Giuseppe Digilio
2018-12-10 16:59:25 +01:00
parent 251d93c4b3
commit b2e90ca8d3
9 changed files with 50 additions and 18 deletions

View File

@@ -112,7 +112,7 @@ export class FormBuilderService extends DynamicFormService {
if (isDateObject(controlValue)) {
return new FormFieldMetadataValueObject(controlValue, controlLanguage, authority, controlValue, place);
} else {
return new FormFieldMetadataValueObject(controlValue.value, controlLanguage, authority, controlValue.display, place);
return new FormFieldMetadataValueObject(controlValue.value, controlLanguage, authority, controlValue.display, place, controlValue.confidence);
}
}
};