Commit 04d7c134 authored by Sven Franck's avatar Sven Franck

app: allow wrap and logic.wrap to be set on formField (undo later)

parent a0dcef93
......@@ -270,7 +270,7 @@
// optionally wrap input in a div-fieldcontain
// NOTE: route is for custom HTML elements... service_instance_status
if (!spec.logic.route && (spec.logic.wrap !== true || hidden_field)) {
if (!spec.logic.route && (spec.logic.wrap !== true && spec.wrap !== true) || hidden_field) {
wrapper = document.createDocumentFragment();
} else {
wrapper = factory.element({
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment