-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(select/radio): Add support for options with boolean type #89
Conversation
bda5b44
to
c30b5c6
Compare
c30b5c6
to
331d08e
Compare
@@ -8,7 +8,9 @@ import { | |||
JSONSchemaBuilder, | |||
schemaInputTypeText, | |||
schemaInputTypeRadioDeprecated, | |||
schemaInputTypeRadio, | |||
schemaInputTypeRadioString, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI @Arcombe-Remote , I've renamed the PR title to follow conventional commits :) fix(select/radio): Add support for options with boolean type (#89)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Version 0.11.3-beta.0
published!
Description
Adding validation for boolean values in Radio input type.
Internal ticket
Problem
Currently the validation for Radio inputs was set up for either
string
ornumber
types. When usingboolean
values the validation defaulted tostring
and errored even if it was correct.Solution
Adding a validation option for boolean types.