Started main quote with bool types for EditForm.

This commit is contained in:
Scott
2018-04-10 14:17:10 +02:00
parent b1580348a9
commit b9b164eb89
4 changed files with 15 additions and 4 deletions

View File

@ -201,6 +201,7 @@ func RenderField(b *bytes.Buffer, v *reflect.Value, field reflect.StructField, i
}
// TODO: Render bool type
b.WriteString(components.InputBool(idPrefix+field.Name, fieldValue.Bool(), field.Name, field.Tag.Get("tooltip")))
return
}