Download manager is now per user

Replaced multi download mode with autoplay checkbox
This commit is contained in:
Isaac Abadi
2021-08-13 16:28:28 -06:00
parent f892a4a305
commit f7b152fcf6
10 changed files with 77 additions and 70 deletions

View File

@@ -1,4 +1,4 @@
<div *ngIf="downloads">
<div *ngIf="downloads && downloads.length > 0">
<div class="mat-elevation-z8">
<mat-table [dataSource]="dataSource">
@@ -63,4 +63,8 @@
aria-label="Select page of downloads">
</mat-paginator>
</div>
</div>
<div *ngIf="(!downloads || downloads.length === 0) && downloads_retrieved">
<h4 style="text-align: center; margin-top: 10px;" i18n="No downloads label">No downloads available!</h4>
</div>