diff --git a/package.json b/package.json
index 710f62a257..35bd2602b6 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,7 @@
"test:headless": "karma start --single-run --browsers ChromeHeadless",
"test:watch": "karma start --no-single-run --auto-watch",
"webdriver:start": "node node_modules/protractor/bin/webdriver-manager start --seleniumPort 4444",
- "webdriver:update": "node node_modules/protractor/bin/webdriver-manager update --standalone",
+ "webdriver:update": "node node_modules/protractor/bin/webdriver-manager update --standalone --gecko false",
"lint": "tslint \"src/**/*.ts\" && tslint \"e2e/**/*.ts\"",
"docs": "typedoc --options typedoc.json ./src/",
"coverage": "http-server -c-1 -o -p 9875 ./coverage"
diff --git a/src/app/+community-page/community-page.component.html b/src/app/+community-page/community-page.component.html
index 82939e7743..976e1091e5 100644
--- a/src/app/+community-page/community-page.component.html
+++ b/src/app/+community-page/community-page.component.html
@@ -8,7 +8,7 @@
[logo]="(logoRDObs | async)?.payload"
[alternateText]="'Community Logo'">
-
+
{{collection.name}}
{{collection.shortDescription}}
diff --git a/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts b/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
index cb371617c9..fc69719896 100644
--- a/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
+++ b/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
@@ -1,10 +1,9 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs/Observable';
-import { CollectionDataService } from '../../core/data/collection-data.service';
-import { PaginatedList } from '../../core/data/paginated-list';
import { RemoteData } from '../../core/data/remote-data';
import { Collection } from '../../core/shared/collection.model';
+import { Community } from '../../core/shared/community.model';
import { fadeIn } from '../../shared/animations/fade';
@@ -15,13 +14,10 @@ import { fadeIn } from '../../shared/animations/fade';
animations:[fadeIn]
})
export class CommunityPageSubCollectionListComponent implements OnInit {
- subCollectionsRDObs: Observable