Number Field Validation

@gilcrest

Hey Dan! Adding on this check for if a value is not null should work.

{{ !Number.isInteger(self.value) && self.value != null ? 'Not an integer' : ''}}

You will also need to make sure to check that the toggle 'Allow null value' is turned on and the toggle for 'required field' is off to allow for the submission of null.

1 Like