diff --git a/alfa-client/libs/admin-settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts b/alfa-client/libs/admin-settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts
index e1dbd1bde2587b4771a774ff5ea41733b0b17acc..9750b725ddfbf7741e9097226c237dfbf613383a 100644
--- a/alfa-client/libs/admin-settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts
+++ b/alfa-client/libs/admin-settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts
@@ -20,15 +20,15 @@ export class OrganisationseinheitContainerComponent implements OnInit {
     this.organisationseinheitItems$ = this.userService.getOrganisationseinheitItems();
   }
 
-  openDialogForNewGroup() {
+  public openDialogForNewGroup(): void {
     this.form.open();
   }
 
-  editOrganisationseinheit(organisationseinheit: Organisationseinheit) {
+  public editOrganisationseinheit(organisationseinheit: Organisationseinheit): void {
     this.form.openEdit(organisationseinheit);
   }
 
-  deleteOrganisationseinheit(organisationseinheit: Organisationseinheit) {
+  public deleteOrganisationseinheit(organisationseinheit: Organisationseinheit): void {
     this.form.delete(organisationseinheit);
   }
 }