From a4b8bf1250f2414fab8b17b9ebbec5178e42f6d0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 20 Oct 2024 19:19:30 -0700 Subject: [PATCH] Fix: prevent focus error on custom field edit when switching from select --- .../custom-field-edit-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts index 48e5e53bb..b27ec9fcd 100644 --- a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts @@ -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() }) }