Skip to content

Commit 6ff3a40

Browse files
author
Kuno Vercammen
committed
114599: Adapted the changes after the rebase
1 parent 8ac2fe9 commit 6ff3a40

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

src/app/collection-page/create-collection-page/create-collection-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
</div>
1212

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

src/app/collection-page/create-collection-page/create-collection-page.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AsyncPipe } from '@angular/common';
1+
import { AsyncPipe, NgIf } from '@angular/common';
22
import { Component } from '@angular/core';
33
import { Router } from '@angular/router';
44
import {
@@ -16,6 +16,7 @@ import { CreateComColPageComponent } from '../../shared/comcol/comcol-forms/crea
1616
import { ThemedLoadingComponent } from '../../shared/loading/themed-loading.component';
1717
import { NotificationsService } from '../../shared/notifications/notifications.service';
1818
import { CollectionFormComponent } from '../collection-form/collection-form.component';
19+
import { LoadingComponent } from '../../../themes/custom/app/shared/loading/loading.component';
1920

2021
/**
2122
* 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
2930
TranslateModule,
3031
AsyncPipe,
3132
ThemedLoadingComponent,
33+
LoadingComponent,
34+
NgIf,
3235
],
3336
standalone: true,
3437
})

src/app/community-page/create-community-page/create-community-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ <h2 *ngIf="!parent" id="header" class="border-bottom pb-2">{{ 'community.create.
1414
</div>
1515

1616
<div class="container">
17-
<ds-themed-loading *ngIf="isLoading$ | async"></ds-themed-loading>
17+
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
1818
</div>

src/app/community-page/create-community-page/create-community-page.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { ThemedLoadingComponent } from '../../shared/loading/themed-loading.comp
1919
import { NotificationsService } from '../../shared/notifications/notifications.service';
2020
import { VarDirective } from '../../shared/utils/var.directive';
2121
import { CommunityFormComponent } from '../community-form/community-form.component';
22+
import { LoadingComponent } from '../../../themes/custom/app/shared/loading/loading.component';
2223

2324
/**
2425
* 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
3435
NgIf,
3536
AsyncPipe,
3637
ThemedLoadingComponent,
38+
LoadingComponent,
3739
],
3840
standalone: true,
3941
})

0 commit comments

Comments
 (0)