From f9aba8ca555a6fe83d9741c4b086fb4441625956 Mon Sep 17 00:00:00 2001 From: Johny Ho Date: Sun, 13 Jul 2025 14:15:47 -0400 Subject: [PATCH] Ensure all strings --- lib/form_props/inputs/check_box.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/form_props/inputs/check_box.rb b/lib/form_props/inputs/check_box.rb index 3678f67..e03783d 100644 --- a/lib/form_props/inputs/check_box.rb +++ b/lib/form_props/inputs/check_box.rb @@ -5,7 +5,7 @@ module Inputs class CheckBox < Base def initialize(object_name, method_name, template_object, checked_value, unchecked_value, options) @checked_value = checked_value - @unchecked_value = unchecked_value + @unchecked_value = unchecked_value.to_s super(object_name, method_name, template_object, options) end