Skip to content
Snippets Groups Projects
Commit e47dbd25 authored by Isaac Evavold's avatar Isaac Evavold
Browse files

ROENROLL-1972 show pending audits if metadata table has no completed audits

parent 960aeaac
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</caption> </caption>
<!-- No audits message --> <!-- No audits message -->
<div *ngIf="(metadata | async).length <= 0" class="no-audits"> <div *ngIf="dataSource.data.length == 0" class="no-audits">
<ng-container [ngSwitch]="type"> <ng-container [ngSwitch]="type">
<ng-container *ngSwitchCase="'program'"> <ng-container *ngSwitchCase="'program'">
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
</ng-container> </ng-container>
</div> </div>
<table mat-table *ngIf="(metadata | async).length > 0" [dataSource]="dataSource"> <table mat-table *ngIf="dataSource.data.length > 0" [dataSource]="dataSource">
<!-- School Column --> <!-- School Column -->
<ng-container matColumnDef="school"> <ng-container matColumnDef="school">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment