lib/formulaic/inputs/boolean_input.rb in formulaic-0.4.0 vs lib/formulaic/inputs/boolean_input.rb in formulaic-0.4.1
- old
+ new
@@ -1,12 +1,12 @@
module Formulaic
module Inputs
class BooleanInput < Input
def fill
if value
- check(label)
+ check(label.to_str)
else
- uncheck(label)
+ uncheck(label.to_str)
end
end
end
end
end