Skip to content
Snippets Groups Projects

Fixed the NGAS download filter issues

Merged Nathan Bockisch requested to merge fix-download-filters into main
4 files
+ 13
8
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -18,7 +18,7 @@
<div class="bg-light p-2">
<p>NGAS Download Status</p>
<div *ngFor="let s of downloadStatus" class="form-check">
<div *ngFor="let s of download_status" class="form-check">
<input class="form-check-input" type="checkbox" [id]="s.name" [value]="s.filter_val" (change)="addFilter(s.filter_val, 'download_status', $event.target.checked)" [checked]="s.isChecked" />
<label class="form-check-label" [for]="s.name">{{s.name}}</label>
</div>
Loading