From fa315df8fba25d09cad85316909f532036872fa3 Mon Sep 17 00:00:00 2001 From: Roman Khegay Date: Mon, 22 Jul 2024 21:22:59 +0500 Subject: [PATCH] fix(input): comment ngOnInit --- projects/lib/input/input.component.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/lib/input/input.component.ts b/projects/lib/input/input.component.ts index 1763e4d..398ccbc 100644 --- a/projects/lib/input/input.component.ts +++ b/projects/lib/input/input.component.ts @@ -76,13 +76,13 @@ export class WrInputComponent extends WrAbstractBase implements ControlValueAcce } ngOnInit(): void { - this.formControl.valueChanges - .pipe( - debounceTime(200), - tap(value => this.onChange(value)), - takeUntil(this.destroyed$) - ) - .subscribe(); + // this.formControl.valueChanges + // .pipe( + // debounceTime(200), + // tap(value => this.onChange(value)), + // takeUntil(this.destroyed$) + // ) + // .subscribe(); } @Input() placeholder = '';