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

Update program of study to handle null values.

parent 607ea7e6
No related branches found
No related tags found
No related merge requests found
Pipeline #41628 passed
......@@ -30,7 +30,7 @@
<!-- Program Column -->
<ng-container matColumnDef="program">
<th mat-header-cell *matHeaderCellDef>Program of Study</th>
<td mat-cell *matCellDef="let audit" class="program-cell">{{audit.darsDegreeProgramDescription.toLowerCase()}}</td>
<td mat-cell *matCellDef="let audit" class="program-cell">{{(audit.darsDegreeProgramDescription || '').toLowerCase()}}</td>
</ng-container>
<!-- Honors Column -->
......
......@@ -5,6 +5,7 @@ export interface AuditMetadata {
darsInstitutionCode: string;
darsInstitutionCodeDescription: string;
darsDegreeProgramCode: string;
darsDegreeProgramDescription?: string;
darsStatusOfDegreeAuditRequest: string;
darsHonorsOptionCode: string;
darsHonorsOptionDescription: string;
......
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