From 37f600b405789686e63a03eb0d420e51a051974e Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 7 Dec 2024 09:44:25 +0100 Subject: [PATCH] Add public keyword --- .../create-or-update-access-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts b/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts index 5bb6ca3e5..727263718 100644 --- a/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts +++ b/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts @@ -38,7 +38,7 @@ export class CreateOrUpdateAccessDialog implements OnDestroy { private notificationService: NotificationService ) {} - ngOnInit() { + public ngOnInit() { this.accessForm = this.formBuilder.group({ alias: [this.data.access.alias], permissions: [this.data.access.permissions[0], Validators.required],