format-as-currency icon indicating copy to clipboard operation
format-as-currency copied to clipboard

No way to make field not required

Open rickyk586 opened this issue 7 years ago • 2 comments

not much more to say other than the title of the issue...

rickyk586 avatar Mar 06 '17 01:03 rickyk586

PRs are welcome! You might want to start by looking at the$validators array.

bcherny avatar Mar 06 '17 02:03 bcherny

Hello, I'm sure someone else will end up here as I did looking for a way to disable this behaviour, as a workaround (before a fix/option is pushed up) you can do something like this:

ngModel.$validators.currency = function (modelValue) {
  return true
}

Phr33d0m avatar May 07 '17 11:05 Phr33d0m