diff --git a/npm/ng-packs/packages/core/src/lib/abstracts/ng-model.component.ts b/npm/ng-packs/packages/core/src/lib/abstracts/ng-model.component.ts index 8cabb30b0d..6653880b45 100644 --- a/npm/ng-packs/packages/core/src/lib/abstracts/ng-model.component.ts +++ b/npm/ng-packs/packages/core/src/lib/abstracts/ng-model.component.ts @@ -47,7 +47,7 @@ export class AbstractNgModelComponent implements ControlValueAcc writeValue(value: T): void { this._value = this.valueLimitFn(value, this._value) || value; - setTimeout(() => this.cdRef.markForCheck(), 0); + this.cdRef.markForCheck(); } registerOnChange(fn: any): void {