Skip to content

Commit

Permalink
Merge pull request #14824 from primefaces/issue-14819
Browse files Browse the repository at this point in the history
Fixed #14819 - Checkbox | Disabled checkboxes appear writable until t…
  • Loading branch information
cetincakiroglu authored Feb 22, 2024
2 parents 2f125ac + f78655c commit dbb6ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ export class Checkbox implements ControlValueAccessor {
setDisabledState(val: boolean): void {
setTimeout(() => {
this.disabled = val;
this.cd.markForCheck();
});
this.cd.markForCheck();
}

checked() {
Expand Down

0 comments on commit dbb6ba4

Please sign in to comment.