diff --git a/bookwyrm/static/js/check_all.js b/bookwyrm/static/js/check_all.js index 72c83e3e9..de067f780 100644 --- a/bookwyrm/static/js/check_all.js +++ b/bookwyrm/static/js/check_all.js @@ -13,7 +13,7 @@ document .querySelectorAll(`#${mainCheckbox.dataset.target} [type="checkbox"]`) - .forEach(checkbox => {checkbox.checked = mainCheckbox.checked;}); + .forEach(checkbox => checkbox.checked = mainCheckbox.checked); } document