util.dataforms: Add support for field descriptions in <desc>

This commit is contained in:
Kim Alvefur 2018-06-27 20:06:13 +02:00
parent 0a92cbb372
commit cecc562ac0

View file

@ -38,6 +38,10 @@ function form_t.form(layout, data, formtype)
-- Add field tag
form:tag("field", { type = field_type, var = field.name, label = field.label });
if field.desc then
form:text_tag("desc", field.desc);
end
local value = (data and data[field.name]) or field.value;
if value then