Fix single quotes in saveButton const.
This commit is contained in:
parent
45dc01349d
commit
0798dacb01
|
@ -18,7 +18,7 @@ items.forEach((value) => {
|
|||
containerItems.insertAdjacentHTML('beforeend', html);
|
||||
});
|
||||
|
||||
const saveButton = `<button class="btn-save" type="submit">Save changes</button>`;
|
||||
const saveButton = '<button class="btn-save" type="submit">Save changes</button>';
|
||||
containerItems.insertAdjacentHTML('beforeend', saveButton);
|
||||
|
||||
function saveOptions() {
|
||||
|
|
Loading…
Reference in New Issue