Skip to content

Commit

Permalink
fix(docs): update errorState example to cover handle missing state (#…
Browse files Browse the repository at this point in the history
…30059)

resolves #29750

(cherry picked from commit 23c19be)
  • Loading branch information
Sepandard authored and crisbeto committed Nov 22, 2024
1 parent 43eb506 commit f9d9d2c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guides/creating-a-custom-form-field-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,14 +357,14 @@ ngDoCheck() {
}

private updateErrorState() {
const parent = this._parentFormGroup || this.parentForm;
const parentSubmitted = this._parentFormGroup?.submitted || this._parentForm?.submitted;
const touchedOrParentSubmitted = this.touched || parentSubmitted;

const oldState = this.errorState;
const newState = (this.ngControl?.invalid || this.parts.invalid) && (this.touched || parent.submitted);
const newState = (this.ngControl?.invalid || this.parts.invalid) && touchedOrParentSubmitted;

if (oldState !== newState) {
if (this.errorState !== newState) {
this.errorState = newState;
this.stateChanges.next();
this.stateChanges.next(); // Notify listeners of state changes.
}
}
```
Expand Down

0 comments on commit f9d9d2c

Please sign in to comment.