1
0
mirror of https://gitlab.com/mickie1/share-freedom-extension synced 2025-01-14 01:33:48 +01:00

Fix single quotes in saveButton const.

This commit is contained in:
mickie 2022-01-14 02:20:15 -06:00
parent 45dc01349d
commit 0798dacb01

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