diff --git a/projects/igniteui-angular/src/lib/directives/input/input.directive.ts b/projects/igniteui-angular/src/lib/directives/input/input.directive.ts index 9a8dcb5b5e5..bfd389178f6 100644 --- a/projects/igniteui-angular/src/lib/directives/input/input.directive.ts +++ b/projects/igniteui-angular/src/lib/directives/input/input.directive.ts @@ -295,7 +295,7 @@ export class IgxInputDirective implements AfterViewInit, OnDestroy { } private checkValidity() { - if (!this.ngControl && this._hasValidators) { + if (!this.ngControl && this._hasValidators()) { this._valid = this.nativeElement.checkValidity() ? IgxInputState.VALID : IgxInputState.INVALID; } }