Skip to content

Commit

Permalink
Fixed #14819 - Checkbox | Disabled checkboxes appear writable until t…
Browse files Browse the repository at this point in the history
…hey receive focus
  • Loading branch information
mehmetcetin01140 committed Feb 16, 2024
1 parent 4157578 commit f78655c
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 f78655c

Please sign in to comment.