Skip to content
Snippets Groups Projects
Commit 62973ef9 authored by Scott Berg's avatar Scott Berg Committed by Scott Berg
Browse files

Update audit table content.

parent 4cb771ba
No related branches found
No related tags found
No related merge requests found
Pipeline #41531 passed
......@@ -24,13 +24,13 @@
<!-- School Column -->
<ng-container matColumnDef="school">
<th mat-header-cell *matHeaderCellDef>School/College</th>
<td mat-cell *matCellDef="let audit">{{audit.darsInstitutionCodeDescription}}</td>
<td mat-cell *matCellDef="let audit">{{audit.darsInstitutionCodeDescription.substring(0, audit.darsInstitutionCodeDescription.indexOf(', College of'))}}</td>
</ng-container>
<!-- Program Column -->
<ng-container matColumnDef="program">
<th mat-header-cell *matHeaderCellDef>Program of Study</th>
<td mat-cell *matCellDef="let audit">{{audit.darsDegreeProgramDescription}}</td>
<td mat-cell *matCellDef="let audit" class="program-cell">{{audit.darsDegreeProgramDescription.toLowerCase()}}</td>
</ng-container>
<!-- Honors Column -->
......@@ -51,7 +51,7 @@
<td mat-cell *matCellDef="let audit">
<div *ngIf="audit.darsStatusOfDegreeAuditRequest == 'Done' || audit.darsStatusOfDegreeAuditRequest.indexOf('Failed') > -1; else loading">
<div>{{audit.darsStatusOfDegreeAuditRequest}}</div>
<div>Run {{audit.darsAuditRunDate | date:'short'}}</div>
<div>Ran {{audit.darsAuditRunDate | date:'short'}}</div>
</div>
<ng-template #loading>
<mat-progress-spinner mode="indeterminate" diameter="24"></mat-progress-spinner>
......
......@@ -57,3 +57,7 @@
text-align: center;
font-weight: bold;
}
.program-cell {
text-transform: capitalize;
}
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