Fix: prevent focus error on custom field edit when switching from select

This commit is contained in:
shamoon 2024-10-20 19:19:30 -07:00
parent 544e9c4fe2
commit a4b8bf1250

View File

@ -67,7 +67,7 @@ export class CustomFieldEditDialogComponent
this.selectOptionInputs.changes
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe(() => {
this.selectOptionInputs.last.nativeElement.focus()
this.selectOptionInputs.last?.nativeElement.focus()
})
}