mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-09-05 02:06:20 +00:00
titleInput may be undefined if in a different tab
This commit is contained in:
@@ -232,7 +232,7 @@ export class DocumentDetailComponent implements OnInit, OnDestroy, DirtyComponen
|
|||||||
.subscribe(({updateResult, nextDocId, closeResult}) => {
|
.subscribe(({updateResult, nextDocId, closeResult}) => {
|
||||||
if (closeResult) {
|
if (closeResult) {
|
||||||
this.router.navigate(['documents', nextDocId])
|
this.router.navigate(['documents', nextDocId])
|
||||||
this.titleInput.focus()
|
this.titleInput?.focus()
|
||||||
}
|
}
|
||||||
}, error => {
|
}, error => {
|
||||||
this.networkActive = false
|
this.networkActive = false
|
||||||
|
Reference in New Issue
Block a user