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

ROENROLL-1861 add previous, current, future, planned option to what-if

parent 2a5a9479
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,7 @@
<mat-form-field>
<mat-label>Include Courses From</mat-label>
<mat-select formControlName="includeCoursesFrom">
<mat-option value="planned">Previous, current, future, and planned terms</mat-option>
<mat-option value="future">Previous, current, and future terms</mat-option>
<mat-option value="current">Previous and current terms</mat-option>
<mat-option value="previous">Previous terms</mat-option>
......
......@@ -86,7 +86,7 @@ export class NewWhatIfAuditDialogComponent implements OnInit {
this.chosenAuditSettings = fb.group({
honorsOptions: fb.control('.', Validators.required),
includeCoursesFrom: fb.control('future', Validators.required),
includeCoursesFrom: fb.control('planned', Validators.required),
degreePlan: fb.control('', Validators.required),
});
......
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