54472: AoT build error fixes

This commit is contained in:
Kristof De Langhe
2018-08-23 14:14:33 +02:00
parent 870c545357
commit 8a52bf1682
4 changed files with 8 additions and 7 deletions

View File

@@ -20,9 +20,9 @@ import { RemoteData } from '../../core/data/remote-data';
})
export class CreateCollectionPageComponent {
private error$: Observable<ErrorResponse>;
private parentUUID$: Observable<string>;
private communityRDObs: Observable<RemoteData<Community>>;
public error$: Observable<ErrorResponse>;
public parentUUID$: Observable<string>;
public communityRDObs: Observable<RemoteData<Community>>;
public constructor(private collectionDataService: CollectionDataService, private communityDataService: CommunityDataService, private routeService: RouteService, private router: Router) {
this.parentUUID$ = this.routeService.getQueryParameterValue('parent');