ckanext-scheming icon indicating copy to clipboard operation
ckanext-scheming copied to clipboard

False is also a value

Open avdata99 opened this issue 1 year ago • 0 comments

In a field with boolean values like this

- field_name: some_bool
  label: Some Bool
  required: false
  preset: select
  choices:
    - value: false
      label: "No"
    - value: true
      label: "Yes"
  validators: scheming_required boolean_validator
  output_validators: boolean_validator

and if the false value is selected, we didn't display anything in the select

This PR fixes those cases

avdata99 avatar Jun 27 '24 18:06 avdata99