Reduce debounce to avoid title erasing

Closes #216
This commit is contained in:
Michael Shamoon 2022-03-05 20:09:44 -08:00
parent 33ab69e010
commit b383e7dd08

View File

@ -94,10 +94,11 @@ export class DocumentDetailComponent implements OnInit, OnDestroy, DirtyComponen
private toastService: ToastService, private toastService: ToastService,
private settings: SettingsService) { private settings: SettingsService) {
this.titleSubject.pipe( this.titleSubject.pipe(
debounceTime(200), debounceTime(1000),
distinctUntilChanged(), distinctUntilChanged(),
takeUntil(this.unsubscribeNotifier) takeUntil(this.unsubscribeNotifier)
).subscribe(titleValue => { ).subscribe(titleValue => {
this.title = titleValue
this.documentForm.patchValue({'title': titleValue}) this.documentForm.patchValue({'title': titleValue})
}) })
} }