Skip to content
Snippets Groups Projects
Commit 2f5d727d authored by OZGCloud's avatar OZGCloud
Browse files

OZG-7128 some fixes

parent 236c8c06
No related branches found
No related tags found
No related merge requests found
...@@ -28,5 +28,3 @@ ...@@ -28,5 +28,3 @@
<admin-organisationseinheit-form-container data-test-id="organisations-einheit-form" /> <admin-organisationseinheit-form-container data-test-id="organisations-einheit-form" />
} }
</ng-container> </ng-container>
<admin-organisations-einheit-form-container/>
\ No newline at end of file
...@@ -21,11 +21,10 @@ ...@@ -21,11 +21,10 @@
* Die sprachspezifischen Genehmigungen und Beschränkungen * Die sprachspezifischen Genehmigungen und Beschränkungen
* unter der Lizenz sind dem Lizenztext zu entnehmen. * unter der Lizenz sind dem Lizenztext zu entnehmen.
*/ */
import { OrganisationsEinheitFormContainerComponent } from '@admin-client/admin-settings'; import { OrganisationsEinheitFormContainerComponent } from '@admin-client/organisations-einheit';
import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared'; import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared';
import { createStateResource, StateResource, TechSharedModule } from '@alfa-client/tech-shared'; import { createStateResource, StateResource, TechSharedModule } from '@alfa-client/tech-shared';
import { existsAsHtmlElement, mock, Mock, notExistsAsHtmlElement } from '@alfa-client/test-utils'; import { existsAsHtmlElement, mock, Mock, notExistsAsHtmlElement } from '@alfa-client/test-utils';
import { OrganisationsEinheitFormContainerComponent } from '@admin-client/organisations-einheit';
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed } from '@angular/core/testing';
import { createApiRootResource } from 'libs/api-root-shared/test/api-root'; import { createApiRootResource } from 'libs/api-root-shared/test/api-root';
import { getDataTestIdOf } from 'libs/tech-shared/test/data-test'; import { getDataTestIdOf } from 'libs/tech-shared/test/data-test';
......
...@@ -21,18 +21,19 @@ ...@@ -21,18 +21,19 @@
* Die sprachspezifischen Genehmigungen und Beschränkungen * Die sprachspezifischen Genehmigungen und Beschränkungen
* unter der Lizenz sind dem Lizenztext zu entnehmen. * unter der Lizenz sind dem Lizenztext zu entnehmen.
*/ */
import { OrganisationsEinheitFormContainerComponent } from '@admin-client/organisations-einheit';
import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared'; import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared';
import { createEmptyStateResource, StateResource } from '@alfa-client/tech-shared'; import { createEmptyStateResource, StateResource } from '@alfa-client/tech-shared';
import { UiModule } from '@alfa-client/ui';
import { CommonModule } from '@angular/common';
import { Component, inject, OnInit } from '@angular/core'; import { Component, inject, OnInit } from '@angular/core';
import { Observable, of } from 'rxjs'; import { Observable, of } from 'rxjs';
import { OrganisationsEinheitFormContainerComponent } from '@admin-client/organisations-einheit';
import { Component } from '@angular/core';
@Component({ @Component({
selector: 'organisationseinheit-form-page', selector: 'organisationseinheit-form-page',
templateUrl: './organisationseinheit-form-page.component.html', templateUrl: './organisationseinheit-form-page.component.html',
standalone: true, standalone: true,
imports: [OrganisationsEinheitFormContainerComponent], imports: [CommonModule, UiModule, OrganisationsEinheitFormContainerComponent],
}) })
export class OrganisationsEinheitFormPageComponent implements OnInit { export class OrganisationsEinheitFormPageComponent implements OnInit {
private apiRootService = inject(ApiRootService); private apiRootService = inject(ApiRootService);
......
...@@ -22,9 +22,10 @@ ...@@ -22,9 +22,10 @@
* unter der Lizenz sind dem Lizenztext zu entnehmen. * unter der Lizenz sind dem Lizenztext zu entnehmen.
*/ */
import { OrganisationsEinheitContainerComponent } from '@admin-client/organisations-einheit'; import { OrganisationsEinheitContainerComponent } from '@admin-client/organisations-einheit';
import { Component } from '@angular/core';
import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared'; import { ApiRootLinkRel, ApiRootResource, ApiRootService } from '@alfa-client/api-root-shared';
import { createEmptyStateResource, StateResource } from '@alfa-client/tech-shared'; import { createEmptyStateResource, StateResource } from '@alfa-client/tech-shared';
import { UiModule } from '@alfa-client/ui';
import { CommonModule } from '@angular/common';
import { Component, inject, OnInit } from '@angular/core'; import { Component, inject, OnInit } from '@angular/core';
import { Observable, of } from 'rxjs'; import { Observable, of } from 'rxjs';
...@@ -32,7 +33,7 @@ import { Observable, of } from 'rxjs'; ...@@ -32,7 +33,7 @@ import { Observable, of } from 'rxjs';
selector: 'organisationseinheit-page', selector: 'organisationseinheit-page',
templateUrl: './organisationseinheit-page.component.html', templateUrl: './organisationseinheit-page.component.html',
standalone: true, standalone: true,
imports: [OrganisationsEinheitContainerComponent], imports: [CommonModule, OrganisationsEinheitContainerComponent, UiModule],
}) })
export class OrganisationsEinheitPageComponent implements OnInit { export class OrganisationsEinheitPageComponent implements OnInit {
private apiRootService = inject(ApiRootService); private apiRootService = inject(ApiRootService);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment