From f704695a22d7be0a0b919640490ce5fd6e26f296 Mon Sep 17 00:00:00 2001 From: Jesiel Viana Date: Wed, 23 Jul 2025 09:18:40 -0300 Subject: [PATCH] Fix current parent order when creating subcommunity (cherry picked from commit 44fcc7221bb945e3007ed6f8992788e48564e348) --- .../create-community-parent-selector.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/shared/dso-selector/modal-wrappers/create-community-parent-selector/create-community-parent-selector.component.ts b/src/app/shared/dso-selector/modal-wrappers/create-community-parent-selector/create-community-parent-selector.component.ts index dc49fcaa8a..9d6ce3a692 100644 --- a/src/app/shared/dso-selector/modal-wrappers/create-community-parent-selector/create-community-parent-selector.component.ts +++ b/src/app/shared/dso-selector/modal-wrappers/create-community-parent-selector/create-community-parent-selector.component.ts @@ -66,6 +66,7 @@ export class CreateCommunityParentSelectorComponent extends DSOSelectorModalWrap } ngOnInit() { + super.ngOnInit(); this.isAdmin$ = this.authorizationService.isAuthorized(FeatureID.AdministratorOf); }