From 2c9825193b33a27f2fe1503f3df72750ae6162f7 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 16 Jan 2021 14:14:05 -0800 Subject: [PATCH] Comment typo --- .../app/components/common/edit-dialog/edit-dialog.component.ts | 2 +- .../save-view-config-dialog.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.ts index 135b5a137..3faf18dbb 100644 --- a/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.ts @@ -40,7 +40,7 @@ export abstract class EditDialogComponent implements OnI this.objectForm.patchValue(this.object) } - // we wait to enable the close button so it doesnt pull browser focus since its the first clickable element in the DOM + // wait to enable close button so it doesnt steal focus from input since its the first clickable element in the DOM setTimeout(() => { this.closeEnabled = true }); diff --git a/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.ts b/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.ts index 57de978aa..4f70941dd 100644 --- a/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.ts +++ b/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.ts @@ -41,7 +41,7 @@ export class SaveViewConfigDialogComponent implements OnInit { }) ngOnInit(): void { - // wait to enable close button so it doesnt steal focus form input + // wait to enable close button so it doesnt steal focus from input since its the first clickable element in the DOM setTimeout(() => { this.closeEnabled = true });