Merge branch 'master' into w2p-59334_edit-item-metadata-branch

This commit is contained in:
lotte
2019-02-11 15:45:45 +01:00

View File

@@ -165,7 +165,7 @@ export abstract class DataService<T extends CacheableObject> {
const endpoint$ = this.halService.getEndpoint(this.linkPath).pipe(
isNotEmptyOperator(),
distinctUntilChanged(),
map((endpoint: string) => parentUUID ? `${endpoint}?parentCommunity=${parentUUID}` : endpoint)
map((endpoint: string) => parentUUID ? `${endpoint}?parent=${parentUUID}` : endpoint)
);
const normalizedObject: NormalizedObject<T> = this.dataBuildService.normalize<T>(dso);