[DURACOM-307] start migration and type fixing

This commit is contained in:
FrancescoMolinaro
2025-02-05 18:33:54 +01:00
parent b9e164de78
commit 069fd02517
598 changed files with 5674 additions and 6015 deletions

View File

@@ -1,15 +1,19 @@
<div class="container" *ngIf="(isLoading$ | async) === false">
<div class="row">
<div class="col-12 pb-4">
<h1 id="sub-header"
class="border-bottom pb-2">{{ 'collection.create.sub-head' | translate:{ parent: dsoNameService.getName((parentRD$| async)?.payload) } }}</h1>
@if ((isLoading$ | async) === false) {
<div class="container">
<div class="row">
<div class="col-12 pb-4">
<h1 id="sub-header"
class="border-bottom pb-2">{{ 'collection.create.sub-head' | translate:{ parent: dsoNameService.getName((parentRD$| async)?.payload) } }}</h1>
</div>
</div>
<ds-collection-form (submitForm)="onSubmit($event)"
[isCreation]="true"
(back)="navigateToHome()"></ds-collection-form>
</div>
<ds-collection-form (submitForm)="onSubmit($event)"
[isCreation]="true"
(back)="navigateToHome()"></ds-collection-form>
</div>
}
<div class="container">
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
@if (isLoading$ | async) {
<ds-loading></ds-loading>
}
</div>