util.dataforms: Only include options in 'form' type forms

Options should not be needed in other types of forms.
This commit is contained in:
Kim Alvefur 2018-08-03 21:05:48 +02:00
parent aa1b2624bd
commit 90a519fc70

View file

@ -50,7 +50,7 @@ function form_t.form(layout, data, formtype)
value = field.value;
end
if formtype ~= "result" and field.options then
if formtype == "form" and field.options then
local defaults = {};
for _, val in ipairs(field.options) do
if type(val) == "table" then