Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created September 11, 2019 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oleersoy/b880d6f1052347f73a1bf1a2aef0aa9b to your computer and use it in GitHub Desktop.
Save oleersoy/b880d6f1052347f73a1bf1a2aef0aa9b to your computer and use it in GitHub Desktop.
email.ts
getEmailError() {
if (this.email.hasError('email')) {
return 'Please enter a valid email address.';
}
if (this.email.hasError('required')) {
return 'An Email is required.';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment