Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Created June 18, 2019 13:31
Show Gist options
  • Save ganqqwerty/739246afec0908311c503fe97a39273c to your computer and use it in GitHub Desktop.
Save ganqqwerty/739246afec0908311c503fe97a39273c to your computer and use it in GitHub Desktop.
this.myForm = this.fb.group({
myCheckbox: [''],
myEmailField: ['', [
Validators.maxLength(250),
Validators.minLength(5),
Validators.pattern(/.+@.+\..+/)
]]
}, {
validators: [emailConditionallyRequiredValidator] // <-----
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment