diff --git a/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.html b/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.html index 02be3442b96f8506d8f773d4849e0501e280fa55..15147aaf6e7a835c2392340bb18c2d02c9d80f88 100644 --- a/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.html +++ b/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.html @@ -3,7 +3,7 @@ <ng-container *ngIf="organisationsEinheitListStateResource$ | async as organisationsEinheitListStateResource"> <ozgcloud-spinner [stateResource]="organisationsEinheitListStateResource"> <admin-organisationseinheit-list - [organisationsEinheitResources]="organisationsEinheitListStateResource.resource | toEmbeddedResources: organisationsEinheitListLinkRel.LIST" + [organisationsEinheitResources]="organisationsEinheitListStateResource.resource | toEmbeddedResources: OrganisationsEinheitListLinkRel.LIST" data-test-id="organisations-einheit-list" /> </ozgcloud-spinner> diff --git a/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts b/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts index c862b254f5100430ac6f1f6fdd522511465864bb..eaa53e7accd8d8f1a27c8ed39dd64e47b5c94ce9 100644 --- a/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts +++ b/alfa-client/libs/admin/settings/src/lib/organisationseinheit/organisationseinheit-container/organisationseinheit-container.component.ts @@ -12,7 +12,7 @@ import { OrganisationsEinheitService } from '../organisationseinheit.service'; export class OrganisationsEinheitContainerComponent implements OnInit { organisationsEinheitListStateResource$: Observable<StateResource<AdminOrganisationsEinheitListResource>>; - public readonly organisationsEinheitListLinkRel = OrganisationsEinheitListLinkRel; + public readonly OrganisationsEinheitListLinkRel = OrganisationsEinheitListLinkRel; constructor(private organisationsEinheitService: OrganisationsEinheitService) {}