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
Fix bug where validating currency returns true after setting to null
Previously, if you set the currency field to null and then called
`validate` on the currency field, the validation would pass because
`strtoupper(null) === ''`, but `validate` looks for null values.
Now `strtoupper` is not called when the currency field is set to
null, so validation will fail.
0 commit comments