diff --git a/jslib b/jslib index 1f2cf2bcdf..a3beb04f7e 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 1f2cf2bcdfddc68a6d9ee0ed732d00c8bec65ad4 +Subproject commit a3beb04f7e09d548bc5223a702f76b9f4e8a4991 diff --git a/src/app/directives/box-row.directive.ts b/src/app/directives/box-row.directive.ts index 8a74a90483..241a5b3f82 100644 --- a/src/app/directives/box-row.directive.ts +++ b/src/app/directives/box-row.directive.ts @@ -39,7 +39,7 @@ export class BoxRowDirective implements OnInit { if (formEl.tagName.toLowerCase() === 'input') { const inputEl = (formEl as HTMLInputElement); if (inputEl.type != null && inputEl.type.toLowerCase() === 'checkbox') { - inputEl.checked = !inputEl.checked; + inputEl.click(); return; } }