Skip to content

Instantly share code, notes, and snippets.

View zurcacielos's full-sized avatar

Fabian Sosa Escalada zurcacielos

View GitHub Profile
ngOnInit(): void {
this.form = this.formBuilder.group({
nombre: ['', {
validators: [Validators.required, Validators.minLength(3), primeraLetraMayuscula()]
}]
});
if (this.modelo !== undefined){
this.form.patchValue(this.modelo);
}