Commit 15ad8951 authored by Boris Kocherov's avatar Boris Kocherov

make incorrect data removable

parent e59f79f6
......@@ -616,7 +616,17 @@
if (default_dict.hasOwnProperty(key)) {
if (!used_properties.hasOwnProperty(key)) {
queue
.push(render_field.bind(g, g, key, path, undefined, default_dict[key], root));
.push(
addSubForm.bind(g, {
gadget: g,
property_name: key,
path: path,
schema_path: "",
schema_part: undefined,
default_dict: default_dict[key]
})
)
.push(root_append);
}
}
}
......
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