Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created September 11, 2019 18:43
Show Gist options
  • Select an option

  • Save oleersoy/b880d6f1052347f73a1bf1a2aef0aa9b to your computer and use it in GitHub Desktop.

Select an option

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