diff --git a/lib/shared/addon/components/modal-add-custom-roles/component.js b/lib/shared/addon/components/modal-add-custom-roles/component.js index 44ea8e58d..1abe26e0a 100644 --- a/lib/shared/addon/components/modal-add-custom-roles/component.js +++ b/lib/shared/addon/components/modal-add-custom-roles/component.js @@ -57,7 +57,7 @@ export default Component.extend(ModalBase, { const check = $('input[type=checkbox]', $row)[0]; // eslint-disable-line if ( check && e.target !== check && e.target.tagName !== 'LABEL' ) { - check.checked = !check.checked; + check.click(); } } },