prevent click event bubbling up

This commit is contained in:
Beverly Nguyen
2025-08-19 13:16:52 -07:00
parent b1b63c7d5e
commit 728038f161

View File

@@ -138,6 +138,7 @@
};
CollapsibleCheckboxes.prototype.toggleAll = function(e) {
e.preventDefault();
e.stopPropagation();
const allChecked = this.$checkboxes.filter(':checked').length === this.$checkboxes.length;
if (allChecked) {