mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: prevent focus error on custom field edit when switching from select
This commit is contained in:
parent
544e9c4fe2
commit
a4b8bf1250
@ -67,7 +67,7 @@ export class CustomFieldEditDialogComponent
|
|||||||
this.selectOptionInputs.changes
|
this.selectOptionInputs.changes
|
||||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.selectOptionInputs.last.nativeElement.focus()
|
this.selectOptionInputs.last?.nativeElement.focus()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user