Comment typo

This commit is contained in:
Michael Shamoon 2021-01-16 14:14:05 -08:00
parent 98f3e99e2e
commit 2c9825193b
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ export abstract class EditDialogComponent<T extends ObjectWithId> 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
});

View File

@ -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
});