bugfixing
This commit is contained in:
parent
eccaa98d9a
commit
f26cdc128b
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@ class Form extends UI {
|
|||
this._linesById = Object.create(null);
|
||||
}
|
||||
addLine(id, label, editor) {
|
||||
let line = document.create("div");
|
||||
let labelCell = document.create("div");
|
||||
let editorCell = document.create("div");
|
||||
let line = document.createElement("div");
|
||||
let labelCell = document.createElement("div");
|
||||
let editorCell = document.createElement("div");
|
||||
|
||||
labelCell.innerText = label;
|
||||
editorCell.appendChild(editor.element);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue