format-as-currency
format-as-currency copied to clipboard
No way to make field not required
not much more to say other than the title of the issue...
PRs are welcome! You might want to start by looking at the$validators array.
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
}