Browse Source

Ensure all checkboxes are boolean when validating

Angus McLeod 6 years ago
parent
commit
b0223cc62d
1 changed files with 5 additions and 0 deletions
  1. 5 0
      lib/builder.rb

+ 5 - 0
lib/builder.rb

@@ -213,6 +213,11 @@ class CustomWizard::Builder
       label = field['label'] || I18n.t("#{field['key']}.label")
       updater.errors.add(field['id'].to_s, I18n.t('wizard.field.too_short', label: label, min: min_length.to_i))
     end
+
+    ## ensure all checkboxes are booleans
+    if field['type'] === 'checkbox'
+      updater.fields[field['id']] = value == true
+    end
   end
 
   def create_topic(user, action, data)