[F] Fix term ending time calculation

This commit is contained in:
Hykilpikonna
2019-12-07 14:28:00 -05:00
parent 5098b696e3
commit 8402fa7dd9
+1 -1
View File
@@ -84,6 +84,6 @@ export class CourseUtils
{
let selected = Navigation.instance.getSelectedGradingPeriod();
return selected == -1 ? Constants.TERMS[3] : Constants.TERMS[selected + 1];
return selected == -1 ? Constants.TERMS[4] : Constants.TERMS[selected + 1];
}
}