Add loading animation for channel list

This commit is contained in:
nymkappa
2022-08-29 22:25:43 +02:00
parent f2377a5f92
commit 90c0ece93f
5 changed files with 32 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
</div>
</form>
<table class="table table-borderless" *ngIf="response.channels.length > 0">
<table class="table table-borderless" *ngIf="response.channels.length > 0" [style]="isLoading ? 'opacity: 0.75' : ''">
<ng-container *ngTemplateOutlet="tableHeader"></ng-container>
<tbody>
<tr *ngFor="let channel of response.channels; let i = index;">