I’m attempting to use the pattern
attribute available on IonInputs, but it doesn’t seem to be doing anything. Here’s what I have.
<IonInput type="text" pattern="/^[1-9]\d*(\.\d+)?$/"><IonInput>
The appears to do nothing and ignores the regex pattern. My assumption is that this would restrict inputs that do not match the pattern. Is this assumption correct?