ng-bootstrap-form-validation
ng-bootstrap-form-validation copied to clipboard
[QUESTION] How can i get requiredLength attribute of Validators.minLength when i format error message
ErrorMessage[] => [{
error: "minLength",
format: (label, error) => minLengthFormat(label, error)
}]
export function minLengthFormat(label: string, error: any): string {
return error; //<- HERE
}