We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c1ef00 commit 1b5c9abCopy full SHA for 1b5c9ab
projects/igniteui-angular/src/lib/time-picker/time-picker.component.ts
@@ -1439,12 +1439,6 @@ export class IgxTimePickerComponent extends PickerBaseDirective
1439
}
1440
1441
private subscribeToDateEditorEvents(): void {
1442
- fromEvent(this.dateTimeEditor.nativeElement, 'blur')
1443
- .pipe(takeUntil(this._destroy$))
1444
- .subscribe(() => {
1445
- this.value = this.dateTimeEditor.value;
1446
- });
1447
-
1448
this.dateTimeEditor.valueChange.pipe(
1449
takeUntil(this._destroy$)).subscribe(date => {
1450
this.value = isDate(this.value) ? this.parseToDate(date) : isDate(date) ? this.toISOString(date) : date;
0 commit comments