Fix typo in 'uncheckAll' script for centers selection

This commit is contained in:
2025-08-28 13:32:43 +02:00
parent 3b75f43e80
commit 1fa464b87a
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
kind: Fixed
body: Fix typo in 'uncheckAll' script for centers selection
time: 2025-08-28T13:31:52.002855848+02:00
custom:
Issue: ""
SchemaChange: No schema change

View File

@@ -63,8 +63,7 @@
<script>
const uncheckAll = () => {
const allCenters = document.getElementsByName('centers[center][]');
const allCenters = document.getElementsByName('centers[centers][]');
allCenters.forEach(checkbox => checkbox.checked = false)
}
</script>