浏览代码

Ensure all checkboxes are boolean when validating

Angus McLeod 6 年之前
父节点
当前提交
b0223cc62d
共有 1 个文件被更改,包括 5 次插入0 次删除
  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)