fix config populating bug
This commit is contained in:
parent
bd81fdb8e6
commit
ca2633fb79
@ -22,7 +22,7 @@ function addFormLine (id, labelAttr, inputAttr) {
|
|||||||
let labelWrapperDiv = document.createElement("div");
|
let labelWrapperDiv = document.createElement("div");
|
||||||
let label = document.createElement("label");
|
let label = document.createElement("label");
|
||||||
label.for = id;
|
label.for = id;
|
||||||
for (k in labelAttr) {
|
for (let k in labelAttr) {
|
||||||
label.k = labelAttr.k;
|
label.k = labelAttr.k;
|
||||||
}
|
}
|
||||||
labelWrapperDiv.append(label);
|
labelWrapperDiv.append(label);
|
||||||
@ -33,7 +33,7 @@ function addFormLine (id, labelAttr, inputAttr) {
|
|||||||
let input = document.createElement("input");
|
let input = document.createElement("input");
|
||||||
input.id = id;
|
input.id = id;
|
||||||
input.name = id;
|
input.name = id;
|
||||||
for (k in inputAttr) {
|
for (let k in inputAttr) {
|
||||||
input.k = inputAttr.k;
|
input.k = inputAttr.k;
|
||||||
}
|
}
|
||||||
inputWrapperDiv.append(input);
|
inputWrapperDiv.append(input);
|
||||||
|
Loading…
Reference in New Issue
Block a user