Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
7.1.0 CE GA1, 7.1.10 DXP FP1, 7.1.X, Master
-
7.1.x
-
Committed
-
0.25
-
4
-
F&W Sprint 9
Description
While trying to add a validation on a text field I ran into the following error message while saving the form
New Form is temporarily unavailable.
I was using 'If input does not match' with a regex like:
\d+
OR
\d{10}
Since this is a regular regex I expect this to work.
My workaround for now, trying to validate on numbers was to use
[0-9]{10}
But this really should work with all kinds of regex, simple and advanced.