mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 15:55:31 +01:00
Fix: prevent focus error on custom field edit when switching from select
This commit is contained in:
parent
544e9c4fe2
commit
a4b8bf1250
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue