How can I get the min length value in the form?
<div *ngIf="dataForm.get('description').hasError('minlength') && dataForm.get('description').touched">
The product description minimum length is {{ dataForm.controls.description.minlength }}.
</div>
I tried dataForm.controls.description.minlength and it prints nothing.