From 48b44848a878f8b2a202bf9a5c74278ab445e69e 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 2edfc0d6ae84351d84c537265330c82b0d59b5b0) --- .../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 0f7dd3d399f..5ec260f729b 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 @@ -68,6 +68,7 @@ export class CreateCommunityParentSelectorComponent extends DSOSelectorModalWrap } ngOnInit() { + super.ngOnInit(); this.isAdmin$ = this.authorizationService.isAuthorized(FeatureID.AdministratorOf); }