114599: Adapted the changes after the rebase

This commit is contained in:
Kuno Vercammen
2024-05-02 10:21:49 +02:00
parent 8ac2fe9dcf
commit 6ff3a40929
4 changed files with 8 additions and 3 deletions

View File

@@ -11,5 +11,5 @@
</div>
<div class="container">
<ds-themed-loading *ngIf="isLoading$ | async"></ds-themed-loading>
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
</div>

View File

@@ -1,4 +1,4 @@
import { AsyncPipe } from '@angular/common';
import { AsyncPipe, NgIf } from '@angular/common';
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import {
@@ -16,6 +16,7 @@ import { CreateComColPageComponent } from '../../shared/comcol/comcol-forms/crea
import { ThemedLoadingComponent } from '../../shared/loading/themed-loading.component';
import { NotificationsService } from '../../shared/notifications/notifications.service';
import { CollectionFormComponent } from '../collection-form/collection-form.component';
import { LoadingComponent } from '../../../themes/custom/app/shared/loading/loading.component';
/**
* Component that represents the page where a user can create a new Collection
@@ -29,6 +30,8 @@ import { CollectionFormComponent } from '../collection-form/collection-form.comp
TranslateModule,
AsyncPipe,
ThemedLoadingComponent,
LoadingComponent,
NgIf,
],
standalone: true,
})

View File

@@ -14,5 +14,5 @@
</div>
<div class="container">
<ds-themed-loading *ngIf="isLoading$ | async"></ds-themed-loading>
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
</div>

View File

@@ -19,6 +19,7 @@ import { ThemedLoadingComponent } from '../../shared/loading/themed-loading.comp
import { NotificationsService } from '../../shared/notifications/notifications.service';
import { VarDirective } from '../../shared/utils/var.directive';
import { CommunityFormComponent } from '../community-form/community-form.component';
import { LoadingComponent } from '../../../themes/custom/app/shared/loading/loading.component';
/**
* Component that represents the page where a user can create a new Community
@@ -34,6 +35,7 @@ import { CommunityFormComponent } from '../community-form/community-form.compone
NgIf,
AsyncPipe,
ThemedLoadingComponent,
LoadingComponent,
],
standalone: true,
})