Commit e71e4181 authored by LianaHus's avatar LianaHus

fixed typo

parent ebae4c36
...@@ -157,7 +157,7 @@ module.exports = class TestTab { ...@@ -157,7 +157,7 @@ module.exports = class TestTab {
// checks/unchecks all // checks/unchecks all
for (let i = 0; i < checkBoxes.length; i++) { for (let i = 0; i < checkBoxes.length; i++) {
checkBoxes[i].checked = event.target.checked checkBoxes[i].checked = event.target.checked
toggleCheckbox(event.target.checkedt, checkboxesLabels[i].innerText) toggleCheckbox(event.target.checked, checkboxesLabels[i].innerText)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment