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
Here, the UomSymbol validation regex pattern [^: \n\r\t]+ in theory is supposed to reject all chars of colon, space, newline, carriage return, and tab. But we found out it actually rejects all n, r, t chars. Values such as decimalDegrees and feet will fail the validation.
If we rewrite the pattern to an equivalent [^:\s]+, then all looks ok.