diff --git a/src/app/core/data/data.service.ts b/src/app/core/data/data.service.ts index 59605da4d8..42115b6b6c 100644 --- a/src/app/core/data/data.service.ts +++ b/src/app/core/data/data.service.ts @@ -165,7 +165,7 @@ export abstract class DataService { 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 = this.dataBuildService.normalize(dso);