Fix single quotes in saveButton const.

This commit is contained in:
mickie 2022-01-14 02:20:15 -06:00
parent 45dc01349d
commit 0798dacb01
1 changed files with 1 additions and 1 deletions

View File

@ -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() {