mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #219 from paperless-ngx/1.6.0-rc1-frontend-fixes1
1.6.0 rc1 frontend fixes 1
This commit is contained in:
commit
748fe3b89f
@ -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})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -146,7 +147,7 @@ export class DocumentDetailComponent implements OnInit, OnDestroy, DirtyComponen
|
|||||||
correspondent: doc.correspondent,
|
correspondent: doc.correspondent,
|
||||||
document_type: doc.document_type,
|
document_type: doc.document_type,
|
||||||
archive_serial_number: doc.archive_serial_number,
|
archive_serial_number: doc.archive_serial_number,
|
||||||
tags: doc.tags
|
tags: [...doc.tags]
|
||||||
})
|
})
|
||||||
|
|
||||||
this.isDirty$ = dirtyCheck(this.documentForm, this.store.asObservable())
|
this.isDirty$ = dirtyCheck(this.documentForm, this.store.asObservable())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user