File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/lib/components/checkbox Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## HEAD (unreleased)
4
4
5
+ - Fix: Removing the ` indeterminate state value validation ` in the 'checked' input of the checkbox component
6
+
5
7
## 49.0.0 (2025-02-11)
6
8
7
9
- Enhancement (` ngx-checkbox ` ): a new look is available that displays ` indeterminate ` state.
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class CheckboxComponent implements ControlValueAccessor {
57
57
// eslint-disable-next-line @angular-eslint/no-input-rename
58
58
@Input ( 'checked' )
59
59
set value ( value : boolean ) {
60
- if ( this . _value !== value && ! this . indeterminate ) {
60
+ if ( this . _value !== value ) {
61
61
this . _value = value ;
62
62
this . cdr . markForCheck ( ) ;
63
63
this . onChangeCallback ( this . _value ) ;
You can’t perform that action at this time.
0 commit comments