We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7454818 commit f047cd0Copy full SHA for f047cd0
2 files changed
dist/schema-form.js
@@ -1270,9 +1270,11 @@ angular.module('schemaForm')
1270
try {
1271
slot = element[0].querySelector('*[sf-insert-field="' + obj.key + '"]');
1272
} catch(err) {
1273
+ // field insertion not supported for complex keys
1274
slot = null;
1275
}
1276
if(slot) {
1277
+ slot.innerHTML = "";
1278
slot.appendChild(n);
1279
} else {
1280
frag.appendChild(n);
0 commit comments