mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 15:55:31 +01:00
parent
33ab69e010
commit
b383e7dd08
1 changed files with 2 additions and 1 deletions
|
|
@ -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})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue