ngx-international-phone-number
ngx-international-phone-number copied to clipboard
The input doesn't reflect is-invalid
When the form is validated and the phone number is not correct, the input's border doesn't turn red. In order for the 'invalid-feedback' to appear, I had to add to add to the CSS:
.form-group .is-invalid .invalid-feedback {
display: block !important;
}
I've checked and the is-invalid
class propagation does not reach the input. That's why its border doesn't turn red.
@danieldluyzo Thank you for reporting issue and workaround. Can you open up pull request for this?