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
When using validation rules such as size, lte, and gte on a text field, the validation currently treats the input as a numeric value rather than validating against the character length of the string. This results in unexpected behavior — for example, setting size:3 on a text field causes it to fail unless the input is literally "3" or "003", instead of checking if the string is 3 characters long.