diff --git a/connect/connectHelper.ts b/connect/connectHelper.ts
index a301ffac..18bde834 100644
--- a/connect/connectHelper.ts
+++ b/connect/connectHelper.ts
@@ -6,7 +6,7 @@ export class ConnectHelper {
public static getCommunityFromDomain(domain: string): string{
if(properties.environment == "development") {
- // domain = "covid-19.openaire.eu"; //for testing
+ domain = "covid-19.openaire.eu"; //for testing
}
domain = domain.indexOf("//") != -1? domain.split("//")[1]:domain; //remove https:// prefix
if (domain.indexOf('eosc-portal.eu') != -1) {
diff --git a/sharedComponents/navigationBar.component.html b/sharedComponents/navigationBar.component.html
index d0bd1eb1..30fea9e8 100644
--- a/sharedComponents/navigationBar.component.html
+++ b/sharedComponents/navigationBar.component.html
@@ -235,28 +235,33 @@
-
+ 0 && properties.environment == 'development'">
+
+
diff --git a/sharedComponents/navigationBar.component.ts b/sharedComponents/navigationBar.component.ts
index dc84d056..5f7c8bff 100644
--- a/sharedComponents/navigationBar.component.ts
+++ b/sharedComponents/navigationBar.component.ts
@@ -124,7 +124,8 @@ export class NavigationBarComponent implements OnInit, OnDestroy {
if(menuItem.isFeatured) {
this.featuredMenuItems.push(menuItem);
} else {
- this.additionalMenuItems.push(menuItem);
+ // disable additional menu items for now
+ // this.additionalMenuItems.push(menuItem);
}
});
},