diff --git a/src/app/+community-page/community-page.component.html b/src/app/+community-page/community-page.component.html
index e429d224f2..05912f676d 100644
--- a/src/app/+community-page/community-page.component.html
+++ b/src/app/+community-page/community-page.component.html
@@ -4,7 +4,7 @@
-
+
{{'browse.comcol.head' | translate}}
\ No newline at end of file
diff --git a/src/app/shared/comcol-page-browse-by/comcol-page-browse-by.component.ts b/src/app/shared/comcol-page-browse-by/comcol-page-browse-by.component.ts
index 7f49b767db..9190bbc687 100644
--- a/src/app/shared/comcol-page-browse-by/comcol-page-browse-by.component.ts
+++ b/src/app/shared/comcol-page-browse-by/comcol-page-browse-by.component.ts
@@ -18,19 +18,6 @@ export class ComcolPageBrowseByComponent implements OnInit {
@Input() id: string;
@Input() contentType: string;
- /**
- * getPathfromType
- */
- getPathfromType(t) {
- if (t === "collection") {
- t = "/collections/";
- } else if (t === "community") {
- t = "/communities/";
- } else {
- t = "/";
- }
- return t;
- }
/**
* List of currently active browse configurations
@@ -42,7 +29,6 @@ export class ComcolPageBrowseByComponent implements OnInit {
ngOnInit(): void {
this.types = this.config.browseBy.types;
- this.contentTypePath = this.getPathfromType(this.contentType) ;
}
}