diff --git a/src/app/app.component.html b/src/app/app.component.html
index b63493a..bc0d9a2 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -5,9 +5,9 @@
-
-
+
diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index 399c9ba..93a6fa2 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -28,6 +28,7 @@ export class AppComponent implements OnInit {
params: BehaviorSubject
= new BehaviorSubject(null);
data: BehaviorSubject = new BehaviorSubject(null);
hasSidebar: boolean = false;
+ hasInternalSidebar: boolean = false;
hasHeader: boolean = true;
hasAdminMenu: boolean = false;
isFrontPage: boolean = false;
@@ -81,6 +82,10 @@ export class AppComponent implements OnInit {
this.hasSidebar = hasSidebar;
this.cdr.detectChanges();
}));
+ this.subscriptions.push(this.layoutService.hasInternalSidebar.subscribe(hasInternalSidebar => {
+ this.hasInternalSidebar = hasInternalSidebar;
+ this.cdr.detectChanges();
+ }));
this.subscriptions.push(this.layoutService.hasHeader.subscribe(hasHeader => {
this.hasHeader = hasHeader;
this.cdr.detectChanges();
diff --git a/src/app/openaireLibrary b/src/app/openaireLibrary
index 3e656de..06a2ae1 160000
--- a/src/app/openaireLibrary
+++ b/src/app/openaireLibrary
@@ -1 +1 @@
-Subproject commit 3e656de39ca585a307b558e46c26de61afc35b96
+Subproject commit 06a2ae16ee5576fec34cc1afad614eff45dc715d
diff --git a/src/app/pages/community-routing.module.ts b/src/app/pages/community-routing.module.ts
index e4a67fc..c8fec18 100644
--- a/src/app/pages/community-routing.module.ts
+++ b/src/app/pages/community-routing.module.ts
@@ -31,7 +31,7 @@ import {ConnectRIGuard} from "../openaireLibrary/connect/communityGuard/connectR
{
path: 'customize-layout',
loadChildren: () => import('./customization/customization.module').then(m => m.CustomizationModule),
- data: {hasSidebar: true, hasHeader: false}
+ data: {hasInternalSidebar: true, hasHeader: false}
},
{
path: 'user-info',
diff --git a/src/app/pages/customization/customization.component.html b/src/app/pages/customization/customization.component.html
index 62831e6..58d1938 100644
--- a/src/app/pages/customization/customization.component.html
+++ b/src/app/pages/customization/customization.component.html
@@ -1,134 +1,135 @@
-