Merge pull request #3267 from loganhz/role

Fix custom role issue
This commit is contained in:
Vincent Fiduccia 2019-08-17 23:40:12 -07:00 committed by GitHub
commit 4ed45ed07c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export default Component.extend({
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();
}
}
},