From 6b634f93e0553ecd8e96f3022c58726387b11750 Mon Sep 17 00:00:00 2001 From: argirok Date: Fri, 22 Mar 2024 11:27:49 +0200 Subject: [PATCH] [develop | DONE | FIX] undo setting this.properties.adminToolsCommunity in app component - fixes issue with wrong community in the server --- src/app/app.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 3919236..bbbf31b 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -308,13 +308,11 @@ export class AppComponent implements OnInit, OnDestroy { initAdminToolCommunity(communityId) { if (communityId) { this.properties.adminToolsPortalType = "community"; - this.properties.adminToolsCommunity = communityId; if (this.document) { this.initLayout(communityId); } } else { this.properties.adminToolsPortalType = "connect"; - this.properties.adminToolsCommunity = "connect"; if (this.document) { this.initLayout(this.communityId?this.communityId:'connect'); }