You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current email pattern /^(([^<>()[]\\\\.,;:s@\\\"]+(.[^<>()[]\\\\.,;:s@\\\"]+)*)|(\\\".+\\\"))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/ in the example does not work for email addresses. Try entering a valid email at https://regex101.com/ using this pattern and it does not match. Try regex pattern /\S+@\S+\.\S+/ instead. In the JSON form template it would need to be escaped like the following.
The regex patterns within the form template do not seem to be working currently. (I tried cloning the repository and setting up the development server locally but kept running into errors trying to get the examples to run, so I'm not sure what is going on with that.)
Is your feature request related to a problem? Please describe.
We need to apply pattern validators
The text was updated successfully, but these errors were encountered: