util.dataforms: Coerce number values for boolean fields

Makes more sense than coercing to a string, which would always be
truthy.
This commit is contained in:
Kim Alvefur 2021-10-26 15:15:57 +02:00
parent 533ab7a4ce
commit fc677f515f
2 changed files with 15 additions and 2 deletions

View file

@ -103,8 +103,11 @@ function form_t.form(layout, data, formtype)
if value ~= nil then
if type(value) == "number" then
-- TODO validate that this is ok somehow, eg check field.datatype
value = ("%g"):format(value);
if field_type == "boolean" then
value = value ~= 0;
else
value = ("%g"):format(value);
end
end
-- Add value, depending on type
if field_type == "hidden" then