Skip to content

Commit

Permalink
fix(input): comment ngOnInit
Browse files Browse the repository at this point in the history
  • Loading branch information
thekhegay authored Jul 22, 2024
1 parent 3fb809a commit fa315df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions projects/lib/input/input.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
Expand Down

0 comments on commit fa315df

Please sign in to comment.