diff --git a/projects/cashmere/src/lib/input/input.directive.ts b/projects/cashmere/src/lib/input/input.directive.ts index 917f0a69a..ef1f2253f 100644 --- a/projects/cashmere/src/lib/input/input.directive.ts +++ b/projects/cashmere/src/lib/input/input.directive.ts @@ -128,6 +128,9 @@ export class InputDirective extends HcFormControlComponent implements AfterViewI @HostListener('blur') _onBlur(): void { + if ( this._ngControl && this._ngControl.control) { + this._ngControl.control.markAsTouched(); + } this._changeFocus(false); this._updateErrorState(); }